Skip to content

Commit

Permalink
Revert "inherit ctor's from geometry_base"
Browse files Browse the repository at this point in the history
This reverts commit bf99177.
  • Loading branch information
Dane Springmeyer committed Jul 28, 2016
1 parent 9a0d7b0 commit 4917037
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/mapnik/geometry.hpp
Expand Up @@ -148,7 +148,11 @@ struct geometry : geometry_base<T>

geometry()
: geometry_base<T>() {} // empty
using geometry_base<T>::geometry_base;

template <typename G>
geometry(G && geom)
: geometry_base<T>(std::forward<G>(geom)) {}

};

template <typename T>
Expand Down

0 comments on commit 4917037

Please sign in to comment.