Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--std/cstdarg.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/std/cstdarg.hpp b/std/cstdarg.hpp
new file mode 100644
index 0000000000..193e85ee9b
--- /dev/null
+++ b/std/cstdarg.hpp
@@ -0,0 +1,12 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <cstdarg>
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif