Unidata / UDUNITS-2

API and utility for arithmetic manipulation of units of physical quantities
http://www.unidata.ucar.edu/software/udunits
Other
59 stars 36 forks source link

Fix for _MSC_VER check in udunits2.h #93

Closed justaPCWingo closed 3 years ago

justaPCWingo commented 3 years ago

The check on line 14 in udunits2.h applies a fix for windows build systems, which breaks more recent versions, as the functions being remapped now exist in the Windows SDK. A simple fix has been applied which only applies the remapping if _MSC_VER < 1910 (equivalent to Visual Studio 2017).

Tested with _MSC_VER == 1920 (Visual Studio 2019)

CLAassistant commented 3 years ago

CLA assistant check
All committers have signed the CLA.

semmerson commented 3 years ago

Thanks Patrick.