2
0
mirror of https://github.com/boostorg/units.git synced 2026-01-19 04:42:15 +00:00
Files
units/test/test_dimensionless_ice1.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

20 lines
689 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/core/ignore_unused.hpp>
#include <boost/units/systems/si/base.hpp>
#include <boost/units/quantity.hpp>
void foo()
{
BOOST_CONSTEXPR_OR_CONST boost::units::quantity<boost::units::si::dimensionless> d = boost::units::quantity< boost::units::si::dimensionless >();
boost::ignore_unused(d);
}