aboutsummaryrefslogtreecommitdiffstats
path: root/CheckNeedGetPointer.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'CheckNeedGetPointer.cmake')
-rw-r--r--CheckNeedGetPointer.cmake18
1 files changed, 0 insertions, 18 deletions
diff --git a/CheckNeedGetPointer.cmake b/CheckNeedGetPointer.cmake
deleted file mode 100644
index 2e53ac3..0000000
--- a/CheckNeedGetPointer.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
-cmake_minimum_required(VERSION 2.8.3)
-
-check_cxx_source_compiles(
-"
-#include <boost/get_pointer.hpp>
-
-namespace boost {
-template <class T> inline T * get_pointer(const std::shared_ptr<T> &p) {
- return p.get();
-}
-}
-
-int main() {
- return 0;
-}
-"
-ENTITYX_NEED_GET_POINTER_SHARED_PTR_SPECIALIZATION
-)