From 73a11bba7efd1126a5f49631786cf0f5d27cf853 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Mon, 8 Aug 2011 20:23:01 +0200 Subject: [PATCH] Add std/shared_array.hpp --- std/shared_array.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 std/shared_array.hpp 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 +using boost::shared_array; + +#ifdef DEBUG_NEW +#define new DEBUG_NEW +#endif