summaryrefslogtreecommitdiff
path: root/shared/parse_plural.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/parse_plural.h')
-rw-r--r--shared/parse_plural.h6
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());
}
bgstack15