Remove unused code in src/Config.h (Fixes #516)

- Remove commented out code as it was not used anywhere in the code
This commit is contained in:
wolfy1339 2017-11-15 18:35:27 -05:00 committed by jacob1
parent 87f3ada7b0
commit 255ca13fab
2 changed files with 7 additions and 18 deletions

View File

@ -163,18 +163,6 @@
#define GLASS_IOR 1.9 #define GLASS_IOR 1.9
#define GLASS_DISP 0.07 #define GLASS_DISP 0.07
#if defined(_MSC_VER)
#if _MSC_VER < 1800
#define fmin min
#define fminf min
#define fmax max
#define fmaxf max
#else
#include <algorithm>
#endif
#endif
#define SDEUT #define SDEUT
//#define REALHEAT
#endif /* CONFIG_H */ #endif /* CONFIG_H */

View File

@ -2,6 +2,7 @@
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>
#include <cmath> #include <cmath>
#include <climits>
#include <vector> #include <vector>
#include <set> #include <set>
#include <bzlib.h> #include <bzlib.h>