我希望这可以正确编译:
#include <boost/test/unit_test.hpp>
#include <boost/units/quantity.hpp>
#include <boost/units/systems/angle/degrees.hpp>
using boost::units::quantity;
using boost::units::degree::degrees;
using boost::units::degree::plane_angle;
int main() {
quantity<plane_angle> q1 = 15 * degrees;
BOOST_CHECK_CLOSE(q1, 15 * degrees, 1e-8);
return 0;
}
不幸的是,这会在 GCC 中产生数百行错误。
当然,我可以这样做。
BOOST_CHECK_CLOSE(q1.value(), 15, 1e-8);
但我想在测试用例中保持单位明确,以防其他人决定更改q1
.
有没有办法让单位明确?