summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorJan Lingscheid <jan.linscheid@auticon.de>2017-10-16 11:00:24 +0000
committerJan Lingscheid <jan.lingscheid@auticon.de>2017-10-17 08:54:59 +0000
commitc943a6db760a6c5eb8110179c240e8f7bd021ac5 (patch)
treedd8e510c611a8cab504f441f2c65924fd6e2da5a /src/ui
parentRevive pango_win32 backend (diff)
downloadinkscape-c943a6db760a6c5eb8110179c240e8f7bd021ac5.tar.gz
inkscape-c943a6db760a6c5eb8110179c240e8f7bd021ac5.zip
Remove std::auto_ptr
As C++11-compiler is now mandatory, conditional use of auto_ptr is no longer usefull. This commit does not remove the usage of std::auto_ptr in 2geom.
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/control-manager.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ui/control-manager.h b/src/ui/control-manager.h
index 3f090d0bd..418591991 100644
--- a/src/ui/control-manager.h
+++ b/src/ui/control-manager.h
@@ -76,11 +76,7 @@ public:
private:
ControlManager();
-#if __cplusplus <= 199711L
- std::auto_ptr<ControlManagerImpl> _impl;
-#else
std::unique_ptr<ControlManagerImpl> _impl;
-#endif
friend class ControlManagerImpl;
};