diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:12:17 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:12:17 +0200 |
commit | b654dbfa5f3e4a4d02f72023f7c5895635aa6396 (patch) | |
tree | 8c1dfe7f638c0fc7afc1d08bc2fc0fd0f8646e5e /shared/parse_plural.h | |
parent | 3.17 (diff) | |
download | FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2 FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip |
3.18
Diffstat (limited to 'shared/parse_plural.h')
-rw-r--r-- | shared/parse_plural.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/parse_plural.h b/shared/parse_plural.h index 0a0e7545..3837feba 100644 --- a/shared/parse_plural.h +++ b/shared/parse_plural.h @@ -8,7 +8,7 @@ #define PARSE_PLURAL_H_INCLUDED #include <list> -#include <boost/shared_ptr.hpp> +#include <memory> #include "zbase.h" @@ -130,7 +130,7 @@ public: int getForm(int n) const { n_ = n ; return expr->eval(); } private: - typedef std::list<boost::shared_ptr<Expression> > DumpList; + typedef std::list<std::shared_ptr<Expression> > DumpList; struct Token { @@ -391,7 +391,7 @@ private: template <class T> const T& manageObj(const T& obj) { - boost::shared_ptr<Expression> newEntry(new T(obj)); + std::shared_ptr<Expression> newEntry(new T(obj)); dump_.push_back(newEntry); return static_cast<T&>(*dump_.back()); } |