]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#357,!258] Added space after return.
authorMarcin Siodelski <marcin@isc.org>
Thu, 7 Mar 2019 10:52:08 +0000 (11:52 +0100)
committerMarcin Siodelski <marcin@isc.org>
Thu, 7 Mar 2019 10:52:08 +0000 (11:52 +0100)
src/lib/testutils/sandbox.h

index f030034e8f82a6e3f632bfa759586602283b7ec2..b2bbe3664bba19c98b1d3f1da2f35001a9a660d3 100644 (file)
@@ -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);
     }
 };