From 12dcdaaa54b9a4c55384e6b04379da8125fa6e7d Mon Sep 17 00:00:00 2001 From: practicalswift Date: Sun, 6 Dec 2020 00:14:17 +0000 Subject: Don't make "in" parameters look like "out"/"in-out" parameters: pass by ref to const instead of ref to non-const --- src/init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.h') diff --git a/src/init.h b/src/init.h index 679e875da1..c04d966d06 100644 --- a/src/init.h +++ b/src/init.h @@ -33,7 +33,7 @@ void InitParameterInteraction(ArgsManager& args); * @note This can be done before daemonization. Do not call Shutdown() if this function fails. * @pre Parameters should be parsed and config file should be read. */ -bool AppInitBasicSetup(ArgsManager& args); +bool AppInitBasicSetup(const ArgsManager& args); /** * Initialization: parameter interaction. * @note This can be done before daemonization. Do not call Shutdown() if this function fails. -- cgit v1.2.3