From: Marcin Siodelski Date: Thu, 7 Mar 2019 10:52:08 +0000 (+0100) Subject: [#357,!258] Added space after return. X-Git-Tag: 465-add-subnet4-update-and-subnet6-update-commands-to-subnet-cmds-hook_base2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c38bb7e812800041283c4285b3f5c1fe2fa03841;p=thirdparty%2Fkea.git [#357,!258] Added space after return. --- diff --git a/src/lib/testutils/sandbox.h b/src/lib/testutils/sandbox.h index f030034e8f..b2bbe3664b 100644 --- a/src/lib/testutils/sandbox.h +++ b/src/lib/testutils/sandbox.h @@ -58,7 +58,7 @@ public: /// /// @param file A path to file that should be joined to base path of sandbox. std::string join(std::string file) { - return(path_ + "/" + file); + return (path_ + "/" + file); } };