StdOverrides.h
Go to the documentation of this file.
1#ifndef GfxTL__STDOVERRIDES_HEADER__
2#define GfxTL__STDOVERRIDES_HEADER__
3#include <algorithm>
4#include <utility>
5#ifndef _USE_MATH_DEFINES
6#define _USE_MATH_DEFINES
7#endif
8#include <cmath>
9
10namespace GfxTL
11{
12
13 using std::max;
14 using std::min;
15 using std::sqrt;
16 using std::swap;
17
18}; // namespace GfxTL
19
20#endif
Definition AABox.h:10