summaryrefslogtreecommitdiff
path: root/src/map/map.hpp
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2019-01-10 18:30:38 -0500
committergumi <git@gumi.ca>2019-01-11 12:03:47 -0500
commit2f94539545b176a7dc2981b1a932b8428e33eaa7 (patch)
tree2124205fc141ceaf98253f1ab1f515e8eb44889a /src/map/map.hpp
parentd8145c4f940a664eb403f7acca10f2caf86e5330 (diff)
downloadtmwa-2f94539545b176a7dc2981b1a932b8428e33eaa7.tar.gz
tmwa-2f94539545b176a7dc2981b1a932b8428e33eaa7.tar.bz2
tmwa-2f94539545b176a7dc2981b1a932b8428e33eaa7.tar.xz
tmwa-2f94539545b176a7dc2981b1a932b8428e33eaa7.zip
drop support for gcc-5, gcc-6, clang-4, clang-5 in travis and fix some misc issues
Diffstat (limited to 'src/map/map.hpp')
-rw-r--r--src/map/map.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/map.hpp b/src/map/map.hpp
index 2f6ef21..60b3462 100644
--- a/src/map/map.hpp
+++ b/src/map/map.hpp
@@ -584,10 +584,10 @@ void map_log(XString line);
#define MAP_LOG(format, ...) \
map_log(STRPRINTF(format, ## __VA_ARGS__))
-#define MAP_LOG_AND_ECHO(...) \
- do { \
- PRINTF(__VA_ARGS__); \
- MAP_LOG(__VA_ARGS__); \
+#define MAP_LOG_AND_ECHO(...) \
+ do { \
+ PRINTF(__VA_ARGS__); \
+ MAP_LOG(__VA_ARGS__); \
} while (0)
#define MAP_LOG_PC(sd, fmt, ...) \