From 88a3b9b50a7f7b772479933a1e8a8c38c79577ad Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 8 May 2019 09:06:45 -0600 Subject: [PATCH] Portability issue fixed in a unit test --- test/test_units.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_units.cpp b/test/test_units.cpp index 15a6980a..12b0b91d 100644 --- a/test/test_units.cpp +++ b/test/test_units.cpp @@ -74,7 +74,7 @@ namespace { // velocity - static_assert(std::is_same_v>, long long int>>); + static_assert(std::is_same_v>, std::int64_t>>); static_assert(10_m / 5_s == 2_mps); static_assert(10 / 5_s * 1_m == 2_mps);