Remove sandbox.cpp from repo

Examples/clcpp_response.cpp : removed debug #defines
This commit is contained in:
Andy Little
2020-01-10 04:36:20 +00:00
committed by Mateusz Pusz
parent 283e9d81a3
commit 3b0e445b4c
2 changed files with 4 additions and 94 deletions

View File

@ -55,16 +55,16 @@ namespace {
template <typename Rep = double>
using fathom = units::si::length<units::international::fathom,Rep>;
#if 1
template <typename Rep = double>
using fathom_us = units::si::length<units::us::fathom,Rep>;
#endif
template <typename Rep = double>
using ft = units::si::length<units::international::foot,Rep>;
#if 1
template <typename Rep = double>
using ft_us = units::si::length<units::us::foot,Rep>;
#endif
template <typename Rep = double>
using ly = units::si::length<units::iau::light_year,Rep>;
@ -174,13 +174,9 @@ void quantities_with_typed_units()
std::cout << " = " << length::angstrom<>(meter) << '\n';
std::cout << " = " << length::ch<>(meter) << '\n';
std::cout << " = " << length::fathom<>(meter) << '\n';
#if 1
std::cout << " = " << length::fathom_us<>(meter) << '\n';
#endif
std::cout << " = " << length::ft<>(meter) << '\n';
#if 1
std::cout << " = " << length::ft_us<>(meter) << '\n';
#endif
std::cout << " = " << length::in<>(meter) << '\n';
std::cout << " = " << length::ly<>(meter) << '\n';
std::cout << " = " << length::mi<>(meter) << '\n';