2
0
mirror of https://github.com/boostorg/units.git synced 2026-01-20 05:02:42 +00:00
Files
units/test/test_dimensionless_ice2.cpp
Glen Fernandes 45787015dd Switch from deprecated test to Lightweight Test
Update close_to implementation in tests
2021-06-09 22:33:28 -04:00

19 lines
671 B
C++

// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2003-2008 Matthias Christian Schabel
// Copyright (C) 2008 Steven Watanabe
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/units/systems/si/length.hpp>
#include <boost/units/systems/cgs/length.hpp>
#include <boost/units/quantity.hpp>
void foo()
{
BOOST_CONSTEXPR_OR_CONST boost::units::quantity<boost::units::si::dimensionless> d(1.0 * boost::units::si::meters / boost::units::cgs::centimeters);
}