From 013f69b1ca1a793391305d16f797b4125ea09a5f Mon Sep 17 00:00:00 2001 From: sale <sandi.fatic@memgraph.io> Date: Tue, 20 Dec 2016 22:29:33 +0000 Subject: [PATCH] removed unused and obsolete macro --- include/config/config.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/config/config.hpp b/include/config/config.hpp index 837340ae9..fb15307f3 100644 --- a/include/config/config.hpp +++ b/include/config/config.hpp @@ -31,7 +31,6 @@ inline size_t to_int(std::string &&s) { return stoull(s); } // code uses this define for key access // _KEY_ is value from all possible keys that are listed above -#define CONFIG_INIT() config::Config<config::MemgraphConfig>::instance().initialize() #define CONFIG(_KEY_) config::Config<config::MemgraphConfig>::instance()[_KEY_] #define CONFIG_INTEGER(_KEY_) config::to_int(CONFIG(_KEY_))