From d766e82aa148d2f232ea7e86efec9a3be7b88faa Mon Sep 17 00:00:00 2001 From: "Frederick C. Kurz" Date: Fri, 10 Jul 2015 12:50:40 -0400 Subject: [PATCH] Changes for vvp/vvp_net.h "# include " was added so "Microsoft Visual Studio Express 2015 RC Web" could compile it without error. "static void operator delete[](void*); was preprocessed so "Microsoft Visual Studio Express 2015 RC Web" could link it without error for a function not yet implemented. --- vvp/vvp_net.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vvp/vvp_net.h b/vvp/vvp_net.h index ddc0f0164..ab90e4221 100644 --- a/vvp/vvp_net.h +++ b/vvp/vvp_net.h @@ -27,6 +27,7 @@ # include # include # include +# include # include # include @@ -1159,7 +1160,9 @@ class vvp_net_t { static void operator delete(void*); // not implemented private: // not implemented static void* operator new[](std::size_t size); +#if defined(__GNUC__) static void operator delete[](void*); +#endif }; /*