Skip to content
Snippets Groups Projects
Commit 3d88a00c authored by Joseph Mirabel's avatar Joseph Mirabel Committed by olivier stasse
Browse files

Remove file include/dynamic-graph/null-ptr.hh

parent b0bfce58
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
// 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment