#pragma once namespace floormat { enum class vector_wrapper_repr : uint8_t { invalid, ref, const_ref, value, }; template struct vector_wrapper; } // namespace floormat