diff --git a/src/core/include/units/quantity_spec.h b/src/core/include/units/quantity_spec.h index 46264df5..a84cfcb1 100644 --- a/src/core/include/units/quantity_spec.h +++ b/src/core/include/units/quantity_spec.h @@ -381,14 +381,14 @@ struct quantity_spec : std::remove_const_t { #ifdef __cpp_explicit_this_parameter -#define QUANTITY_SPEC(name, ...) \ - inline constexpr struct name : quantity_spec<##__VA_ARGS__> { \ +#define QUANTITY_SPEC(name, ...) \ + inline constexpr struct name : ::units::quantity_spec<##__VA_ARGS__> { \ } name #else -#define QUANTITY_SPEC(name, ...) \ - inline constexpr struct name : quantity_spec { \ +#define QUANTITY_SPEC(name, ...) \ + inline constexpr struct name : ::units::quantity_spec { \ } name #endif