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:
parent
c35f2f8334
commit
d766e82aa1
|
|
@ -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
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue