COMP: Prefer the C++ headers over the C99 headers

Using the C++11 headers keeps the library cleaner and more
rigorously scoped use of namespaces.
This commit is contained in:
Hans Johnson
2018-12-12 13:34:37 -06:00
committed by Christopher Dunn
parent 5c8e539af4
commit e50bfefef1
7 changed files with 9 additions and 9 deletions

View File

@@ -28,8 +28,8 @@
#endif
#else
#include <math.h>
#include <stdio.h>
#include <cmath>
#include <cstdio>
#if defined(_MSC_VER)
#if !defined(isnan)