summaryrefslogtreecommitdiff
path: root/cpp/src/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/memory.h')
-rw-r--r--cpp/src/memory.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/cpp/src/memory.h b/cpp/src/memory.h
deleted file mode 100644
index 2d65877adb..0000000000
--- a/cpp/src/memory.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef __UTIL_MEMORY__
-#define __UTIL_MEMORY__
-
-#if __GNUC__ < 4
- #include "boost/shared_ptr.hpp"
- namespace std {
- namespace tr1 {
- using boost::shared_ptr;
- using boost::dynamic_pointer_cast;
- using boost::static_pointer_cast;
- }
- }
-#else
- #include <tr1/memory>
-#endif
-#endif
-