diff --git a/example/glide_computer/include/geographic.h b/example/glide_computer/include/geographic.h index e1db108a..731425e3 100644 --- a/example/glide_computer/include/geographic.h +++ b/example/glide_computer/include/geographic.h @@ -35,7 +35,7 @@ namespace geographic { -template +template struct coordinate { using value_type = Rep; constexpr explicit coordinate(value_type v) : value_(v) {} @@ -45,11 +45,11 @@ private: value_type value_; }; -struct latitude : coordinate { +struct latitude : coordinate { using coordinate::coordinate; }; -struct longitude : coordinate { +struct longitude : coordinate { using coordinate::coordinate; };