no need to use MAPNIK_DECL with typedefs

This commit is contained in:
Dane Springmeyer 2013-05-09 15:25:14 -07:00
parent 47ed6d1405
commit 36bdde82e7
4 changed files with 6 additions and 6 deletions

View file

@ -47,7 +47,7 @@ struct MAPNIK_DECL Featureset : private mapnik::noncopyable
virtual ~Featureset() {}
};
typedef MAPNIK_DECL boost::shared_ptr<Featureset> featureset_ptr;
typedef boost::shared_ptr<Featureset> featureset_ptr;
class MAPNIK_DECL datasource_exception : public std::exception
{

View file

@ -87,8 +87,8 @@ private:
map_type mapping_;
};
typedef MAPNIK_DECL context<std::map<std::string,std::size_t> > context_type;
typedef MAPNIK_DECL boost::shared_ptr<context_type> context_ptr;
typedef context<std::map<std::string,std::size_t> > context_type;
typedef boost::shared_ptr<context_type> context_ptr;
static const value default_value;
@ -308,7 +308,7 @@ inline std::ostream& operator<< (std::ostream & out,feature_impl const& f)
typedef feature_impl Feature;
typedef MAPNIK_DECL boost::shared_ptr<Feature> feature_ptr;
typedef boost::shared_ptr<Feature> feature_ptr;
}

View file

@ -256,7 +256,7 @@ public:
};
typedef MAPNIK_DECL hit_grid<mapnik::value_integer> grid;
typedef hit_grid<mapnik::value_integer> grid;
}
#endif //MAPNIK_GRID_HPP

View file

@ -48,7 +48,7 @@ struct MAPNIK_DECL path_processor
static void collect_attributes(path_expression const& path, std::set<std::string>& names);
};
typedef MAPNIK_DECL mapnik::path_processor path_processor_type;
typedef mapnik::path_processor path_processor_type;
}