From 65509f10a66e38d06631bbaacd66561938f52e74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20K=C4=99dzia?= <pawel.kedzia@pwr.wroc.pl> Date: Wed, 11 May 2011 16:31:11 +0200 Subject: [PATCH] (swig) Removed boost:: namespace from Wccl::Lexicons --- swig/libccllexicons.i | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/swig/libccllexicons.i b/swig/libccllexicons.i index 95727b8..a251379 100644 --- a/swig/libccllexicons.i +++ b/swig/libccllexicons.i @@ -16,7 +16,7 @@ namespace Wccl { class Lexicons { public: - typedef boost::unordered_map<std::string, boost::shared_ptr<Lexicon> > map_t; + typedef unordered_map<std::string, shared_ptr<Lexicon> > map_t; /* --------------------------------------------------------------------- */ @@ -29,11 +29,11 @@ namespace Wccl { /* --------------------------------------------------------------------- */ const Lexicon& get(const std::string& name) const; - boost::shared_ptr<const Lexicon> get_ptr(const std::string& name) const; + shared_ptr<const Lexicon> get_ptr(const std::string& name) const; /* --------------------------------------------------------------------- */ - void insert(const boost::shared_ptr<Lexicon>& lexicon); + void insert(const shared_ptr<Lexicon>& lexicon); /* --------------------------------------------------------------------- */ -- GitLab