From 3d88a00c175ae7a7e560a0d9fab8dcea6788ed58 Mon Sep 17 00:00:00 2001 From: Joseph Mirabel <jmirabel@laas.fr> Date: Mon, 13 Jan 2020 16:20:23 +0100 Subject: [PATCH] Remove file include/dynamic-graph/null-ptr.hh --- CMakeLists.txt | 1 - include/dynamic-graph/null-ptr.hh | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 include/dynamic-graph/null-ptr.hh diff --git a/CMakeLists.txt b/CMakeLists.txt index e447943..55c2de2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,7 +96,6 @@ SET(${PROJECT_NAME}_SOURCES SET(${PROJECT_NAME}_HEADERS include/dynamic-graph/fwd.hh - include/dynamic-graph/null-ptr.hh include/dynamic-graph/debug.h include/dynamic-graph/real-time-logger.h diff --git a/include/dynamic-graph/null-ptr.hh b/include/dynamic-graph/null-ptr.hh deleted file mode 100644 index ee84493..0000000 --- a/include/dynamic-graph/null-ptr.hh +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2010, Thomas Moulard, JRL, CNRS/AIST -// - -#ifndef DYNAMIC_GRAPH_NULL_PTR_HH -#define DYNAMIC_GRAPH_NULL_PTR_HH - -namespace dynamicgraph { -/// \cond -const class { -public: - template <class T> operator T *() const { return 0; } - - template <class C, class T> operator T C::*() const { return 0; } - -private: - void operator&() const; -} nullptr = {}; -/// \endcond - -} // end of namespace dynamicgraph. - -#endif //! DYNAMIC_GRAPH_NULL_PTR_HH -- GitLab