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:
authorYury Melnichek <melnichek@malinovka.local>2011-08-08 22:23:01 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:21:29 +0300
commit73a11bba7efd1126a5f49631786cf0f5d27cf853 (patch)
tree0438aff66238c3b77fc0edc2c7a2864c2b27e363 /std/shared_array.hpp
parent05da4a8e57dfd3f63532e2aefa7ea956bcc16ab4 (diff)
Add std/shared_array.hpp
Diffstat (limited to 'std/shared_array.hpp')
-rw-r--r--std/shared_array.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/std/shared_array.hpp b/std/shared_array.hpp
new file mode 100644
index 0000000000..d15ed737ed
--- /dev/null
+++ b/std/shared_array.hpp
@@ -0,0 +1,13 @@
+#pragma once
+#include "common_defines.hpp"
+
+#ifdef new
+#undef new
+#endif
+
+#include <boost/shared_array.hpp>
+using boost::shared_array;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif