mirror of
https://github.com/bkaradzic/bimg.git
synced 2026-02-17 20:52:38 +01:00
Fixed warnings.
This commit is contained in:
2
3rdparty/astc/mathlib.cpp
vendored
2
3rdparty/astc/mathlib.cpp
vendored
@@ -61,7 +61,7 @@ float nan(int p)
|
||||
return v.q;
|
||||
}
|
||||
|
||||
#if (!_MSC_VER) && (__cplusplus < 201103L)
|
||||
#if !defined(_MSC_VER) && (__cplusplus < 201103L)
|
||||
float fmax(float p, float q)
|
||||
{
|
||||
if (p != p)
|
||||
|
||||
2
3rdparty/astc/mathlib.h
vendored
2
3rdparty/astc/mathlib.h
vendored
@@ -27,7 +27,7 @@ float cospi(float p);
|
||||
|
||||
float nan(int p);
|
||||
|
||||
#if (!_MSC_VER) && (__cplusplus < 201103L)
|
||||
#if !defined(_MSC_VER) && (__cplusplus < 201103L)
|
||||
float fmax(float p, float q);
|
||||
float fmin(float p, float q);
|
||||
#endif // C++11
|
||||
|
||||
Reference in New Issue
Block a user