From 9628c2c097b10f22aafd4890ab8e98375b5740da Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Tue, 19 Dec 2017 22:21:17 +0100 Subject: Replace clock_gettime with std::chrono. --- src/common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.hpp') diff --git a/src/common.hpp b/src/common.hpp index f7435ca..656a370 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -27,7 +27,7 @@ along with Minitrem. If not, see . #include #include "math.hpp" -#define count(A) (sizeof(A) / sizeof((A)[0])) +#define COUNT(A) (sizeof(A) / sizeof((A)[0])) extern bool debug_draw_cmodels; extern bool debug_draw_paths; -- cgit