diff --git a/Utilities/geometry.h b/Utilities/geometry.h index 31ddd26c1e..3598f83518 100644 --- a/Utilities/geometry.h +++ b/Utilities/geometry.h @@ -610,18 +610,11 @@ struct coord_base }; constexpr coord_base() : position{}, size{} -#ifdef _MSC_VER - //compiler error - , x{}, y{}, width{}, height{} -#endif { } constexpr coord_base(const position_base& position, const size2_base& size) : position{ position }, size{ size } -#ifdef _MSC_VER - , x{ position.x }, y{ position.y }, width{ size.width }, height{ size.height } -#endif { } @@ -777,15 +770,6 @@ template struct size3_base { T width, height, depth; - /* - size3_base() : width{}, height{}, depth{} - { - } - - size3_base(T width, T height, T depth) : width{ width }, height{ height }, depth{ depth } - { - } - */ }; template