summaryrefslogtreecommitdiffstats
path: root/ingen/types.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-24 09:20:16 -0500
committerDavid Robillard <d@drobilla.net>2017-12-24 09:20:16 -0500
commitd744e4d421c313a3b4d786e11a311f73da19fc41 (patch)
treeb6bd398d35329dfa7264d9b8dade856fc5d46329 /ingen/types.hpp
parentcbb864b0ff951f75d826d97009681b30cce4da22 (diff)
downloadingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.gz
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.bz2
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.zip
Clean up includes in public headers
Diffstat (limited to 'ingen/types.hpp')
-rw-r--r--ingen/types.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/ingen/types.hpp b/ingen/types.hpp
index d1055e22..b0d73194 100644
--- a/ingen/types.hpp
+++ b/ingen/types.hpp
@@ -23,7 +23,6 @@
namespace Ingen {
-#if __cplusplus >= 201103L
template <class T>
using SPtr = std::shared_ptr<T>;
@@ -32,11 +31,6 @@ using WPtr = std::weak_ptr<T>;
template <class T>
using MPtr = Raul::managed_ptr<T>;
-#else
-#define SPtr std::shared_ptr
-#define WPtr std::weak_ptr
-#define MPtr Raul::managed_ptr
-#endif
template <class T>
void NullDeleter(T* ptr) {}