Update src/core/include/mp-units/framework/representation_concepts.h

Co-authored-by: Mateusz Pusz <mateusz.pusz@gmail.com>
This commit is contained in:
Roth Michaels
2024-12-09 18:10:56 +01:00
committed by GitHub
parent d30f5a668c
commit ec3f000050

View File

@ -310,7 +310,7 @@ concept VectorRepresentation = (!is_quantity<T>) && Vector<T> && requires(const
MP_UNITS_EXPORT template<typename T> MP_UNITS_EXPORT template<typename T>
concept Representation = detail::ScalarRepresentation<T> || detail::ComplexRepresentation<T> || concept Representation = detail::ScalarRepresentation<T> || detail::ComplexRepresentation<T> ||
detail::VectorRepresentation<T>; // || detail::TensorRepresentation<T>; */ detail::VectorRepresentation<T>; // || detail::TensorRepresentation<T>;
namespace detail { namespace detail {