Revert "inherit ctor's from geometry_base"
- Fixes #3473 (windows compile)
- TODO: @artemp get to the bottom of how to inherit from base class
in a way that works with boost::variant and across platforms
This reverts commit bf99177da7
.
This commit is contained in:
parent
9a0d7b0d68
commit
148783da25
1 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue