diff options
| author | Jan Lingscheid <jan.linscheid@auticon.de> | 2017-10-16 11:00:24 +0000 |
|---|---|---|
| committer | Jan Lingscheid <jan.lingscheid@auticon.de> | 2017-10-17 08:54:59 +0000 |
| commit | c943a6db760a6c5eb8110179c240e8f7bd021ac5 (patch) | |
| tree | dd8e510c611a8cab504f441f2c65924fd6e2da5a /src/ui | |
| parent | Revive pango_win32 backend (diff) | |
| download | inkscape-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.h | 4 |
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; }; |
