diff options
author | Antony Woods <acron1@gmail.com> | 2013-10-16 09:09:22 +0100 |
---|---|---|
committer | Antony Woods <acron1@gmail.com> | 2013-10-16 09:09:22 +0100 |
commit | 7a42d331bd9cf0e754105d41b42abfa8a625bf86 (patch) | |
tree | 6f402301e9ea530975bcf12b9e2b389ff4051c3e /CheckNeedGetPointer.cmake | |
parent | 73a0cf44e8d4a852b58b3126ddd3fa3b8a465af5 (diff) |
Fixed invalid header in python files. Now using chrono instead of boost timer. Removed unnecessary ptr checks, as now shared ptr is mandatory. Updated Readme to reflect new changes. Updated travis file, just in case.
Diffstat (limited to 'CheckNeedGetPointer.cmake')
-rw-r--r-- | CheckNeedGetPointer.cmake | 18 |
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 -) |