Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cmath.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa43ca7352284855e72d1de9b24d48e6f712eeef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#ifdef new
#undef new
#endif

// We do not define _USE_MATH_DEFINES - please add your constants below.
#include <cmath>

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif

using std::abs;
using std::cos;
using std::isfinite;
using std::sin;
using std::log10;