Changes for vvp/vvp_net.h

"# include  <string>" 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.
This commit is contained in:
Frederick C. Kurz 2015-07-10 12:50:40 -04:00 committed by Stephen Williams
parent c35f2f8334
commit d766e82aa1
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@
# include <cstddef>
# include <cstdlib>
# include <cstring>
# include <string>
# include <new>
# include <cassert>
@ -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
};
/*