diff --git a/std/complex.hpp b/std/complex.hpp new file mode 100644 index 0000000000..3a13f0a5bd --- /dev/null +++ b/std/complex.hpp @@ -0,0 +1,14 @@ +#pragma once +#include "common_defines.hpp" + +#ifdef new +#undef new +#endif + +#include + +using std::complex; + +#ifdef DEBUG_NEW +#define new DEBUG_NEW +#endif