expicit constructors for geometry_empty
This commit is contained in:
parent
28370753ba
commit
ba9fd556e0
1 changed files with 4 additions and 4 deletions
|
@ -145,14 +145,14 @@ template <typename T>
|
|||
struct geometry : geometry_base<T>
|
||||
{
|
||||
using coord_type = T;
|
||||
// FIXMED
|
||||
|
||||
geometry(geometry_empty const&)
|
||||
: geometry_base<T>() {} // empty
|
||||
|
||||
geometry()
|
||||
: geometry_base<T>() {} // empty
|
||||
|
||||
template <typename G>
|
||||
geometry(G && geom)
|
||||
: geometry_base<T>(std::forward<G>(geom)) {}
|
||||
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
|
|
Loading…
Reference in a new issue