Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert <krzmbrzl@gmail.com>2020-09-11 19:29:33 +0300
committerRobert <krzmbrzl@gmail.com>2020-09-11 19:29:33 +0300
commitaf7dac72f4063dd8d4dac71973ea51c25896089a (patch)
tree35558695aea94d48fd9e77d164d63fd8b7c76e90 /overlay/olsettings.h
parent40b28b03c150b453e00c6bc4f8d6957caea59c51 (diff)
FORMAT: Run clang-format 10 on all C/CXX source-files
Diffstat (limited to 'overlay/olsettings.h')
-rw-r--r--overlay/olsettings.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/overlay/olsettings.h b/overlay/olsettings.h
index a3d221566..a251be8f4 100644
--- a/overlay/olsettings.h
+++ b/overlay/olsettings.h
@@ -25,18 +25,18 @@ OverlayExclusionMode SettingsGetExclusionMode();
/// Get the list of launcher programs to consider when
/// checking the overlay exclusion rules.
-std::vector<std::string> SettingsGetLaunchers();
+std::vector< std::string > SettingsGetLaunchers();
/// Get the list of whitelisted programs to consider when
/// checking the overlay exclusion rules.
-std::vector<std::string> SettingsGetWhitelist();
+std::vector< std::string > SettingsGetWhitelist();
/// Get the list of whitelisted paths to consider when
/// checking the overlay exclusion rules.
-std::vector<std::string> SettingsGetPaths();
+std::vector< std::string > SettingsGetPaths();
/// Get the list of blacklisted programs to consider when
/// checking the overlay exclusion rules.
-std::vector<std::string> SettingsGetBlacklist();
+std::vector< std::string > SettingsGetBlacklist();
#endif