fix: Compilation errors fixed

This commit is contained in:
Mateusz Pusz
2020-12-28 19:23:20 +01:00
parent 3d081d37e6
commit 6c5f27cda7
2 changed files with 4 additions and 2 deletions

View File

@@ -21,6 +21,7 @@
// SOFTWARE. // SOFTWARE.
#include "units/physical/si/base/length.h" #include "units/physical/si/base/length.h"
#include <ostream>
namespace { namespace {

View File

@@ -36,9 +36,10 @@
#pragma warning( disable : 4459 ) // Disable shadowing warning. #pragma warning( disable : 4459 ) // Disable shadowing warning.
#endif #endif
using namespace units;
using namespace units::physical; using namespace units::physical;
using namespace si; using namespace units::physical::si;
using namespace unit_constants; using namespace units::physical::si::unit_constants;
static_assert(2 * m == 2_q_m); static_assert(2 * m == 2_q_m);
static_assert(2 * s == 2_q_s); static_assert(2 * s == 2_q_s);