nholthaus / units

a compile-time, header-only, dimensional analysis and unit conversion library built on c++14 with no dependencies.
http://nholthaus.github.io/units/
MIT License
934 stars 134 forks source link

Fix UNITS_<VAR> def and <var> use mismatch #287

Closed ts826848 closed 1 year ago

ts826848 commented 2 years ago

A few variables prefixed with UNITS_ are defined to control various build options, but prefix-less versions are checked in the rest of the file when determining their values. This makes the options effectively useless.

This commit unifies definition and use so the options actually affect the build.