diff options
Diffstat (limited to 'src/config/ConfigGlobal.hxx')
-rw-r--r-- | src/config/ConfigGlobal.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/config/ConfigGlobal.hxx b/src/config/ConfigGlobal.hxx index 3c6a938a6..9e8687e82 100644 --- a/src/config/ConfigGlobal.hxx +++ b/src/config/ConfigGlobal.hxx @@ -29,14 +29,18 @@ class AllocatedPath; struct config_param; struct ConfigBlock; -void config_global_init(void); -void config_global_finish(void); +void +config_global_init(); + +void +config_global_finish(); /** * Call this function after all configuration has been evaluated. It * checks for unused parameters, and logs warnings. */ -void config_global_check(void); +void +config_global_check(); bool ReadConfigFile(Path path, Error &error); |