aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2019-08-07 11:04:18 +0200
committerneodarz <neodarz@neodarz.net>2019-08-07 11:04:18 +0200
commitbb624b6c95af53c16485c701b18c5a03a9b18fd0 (patch)
treee0a767a3d4412f2a5440ed4c7052b090ea8e5121
parent4c65baa7b6e0a85635f8028a5ff9979b870d7be0 (diff)
downloadumosapicpp-bb624b6c95af53c16485c701b18c5a03a9b18fd0.tar.xz
umosapicpp-bb624b6c95af53c16485c701b18c5a03a9b18fd0.zip
Move some includes in header-guard function
-rw-r--r--config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h
index a94ce03..3c7ff5b 100644
--- a/config.h
+++ b/config.h
@@ -1,11 +1,11 @@
+#ifndef CONFIG_H_
+#define CONFIG_H_
+
#include <string>
#include <map>
#include <fstream>
#include <filesystem>
-#ifndef CONFIG_H_
-#define CONFIG_H_
-
void load_config(std::string config_path);
#endif