From e60600c2da55d4a7940ca3ea455cb5ac783a240d Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sat, 29 Jan 2011 19:08:43 +0100 Subject: [PATCH] Add std/complex.hpp --- std/complex.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 std/complex.hpp 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