2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[#357,!258] Added space after return.

This commit is contained in:
Marcin Siodelski
2019-03-07 11:52:08 +01:00
parent 1dfd132893
commit c38bb7e812

View 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);
}
};