summaryrefslogtreecommitdiff
path: root/geom_matching
diff options
context:
space:
mode:
authorArnur Nigmetov <a.nigmetov@gmail.com>2017-07-19 16:33:37 -0700
committerArnur Nigmetov <a.nigmetov@gmail.com>2017-07-19 16:33:37 -0700
commit3552ce68bc7654df35da471bd937b09a9fde101f (patch)
treeab2229cc343db38c25866601faeb1c7c4953303a /geom_matching
parent5d304d5720cd23ab9aa1179a147ae1e12ee17950 (diff)
Include cmath instead of math.h
Diffstat (limited to 'geom_matching')
-rw-r--r--geom_matching/wasserstein/include/basic_defs_ws.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/geom_matching/wasserstein/include/basic_defs_ws.h b/geom_matching/wasserstein/include/basic_defs_ws.h
index a87ccd3..db305c0 100644
--- a/geom_matching/wasserstein/include/basic_defs_ws.h
+++ b/geom_matching/wasserstein/include/basic_defs_ws.h
@@ -29,12 +29,12 @@ derivative works thereof, in binary and source code form.
#define BASIC_DEFS_WS_H
#include <vector>
-#include <math.h>
+#include <cmath>
#include <cstddef>
#include <unordered_map>
#include <unordered_set>
#include <string>
-#include <assert.h>
+#include <cassert>
#ifdef _WIN32
#include <ciso646>