diff options
author | louiz’ <louiz@louiz.org> | 2020-05-04 23:55:39 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2020-05-04 23:55:39 +0200 |
commit | 10d683354b739ae2567c7898ae11479413dc475a (patch) | |
tree | 3f87fbc934af457926b2861d5f975c1ad1674529 /src | |
parent | c91fac82da5d3cae0f363eb6b75017808837125b (diff) | |
download | biboumi-10d683354b739ae2567c7898ae11479413dc475a.tar.gz biboumi-10d683354b739ae2567c7898ae11479413dc475a.tar.bz2 biboumi-10d683354b739ae2567c7898ae11479413dc475a.tar.xz biboumi-10d683354b739ae2567c7898ae11479413dc475a.zip |
Fix clang warnings on some utils function. It’s also faster
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/empty_if_fixed_server.hpp | 12 | ||||
-rw-r--r-- | src/utils/get_first_non_empty.hpp | 4 |
2 files changed, 5 insertions, 11 deletions
diff --git a/src/utils/empty_if_fixed_server.hpp b/src/utils/empty_if_fixed_server.hpp index cbb9cea..2422ee4 100644 --- a/src/utils/empty_if_fixed_server.hpp +++ b/src/utils/empty_if_fixed_server.hpp @@ -7,17 +7,11 @@ namespace utils { - inline std::string empty_if_fixed_server(std::string&& str) + inline const std::string& empty_if_fixed_server(const std::string& str) { + static const std::string empty{}; if (!Config::get("fixed_irc_server", "").empty()) - return {}; - return std::move(str); - } - - inline std::string empty_if_fixed_server(const std::string& str) - { - if (!Config::get("fixed_irc_server", "").empty()) - return {}; + return empty; return str; } diff --git a/src/utils/get_first_non_empty.hpp b/src/utils/get_first_non_empty.hpp index 1877ee8..6129b63 100644 --- a/src/utils/get_first_non_empty.hpp +++ b/src/utils/get_first_non_empty.hpp @@ -11,13 +11,13 @@ template <> bool is_empty(const std::string& val); template <typename T> -T get_first_non_empty(T&& last) +T& get_first_non_empty(T&& last) { return last; } template <typename T, typename... Args> -T get_first_non_empty(T&& first, Args&&... args) +T& get_first_non_empty(T&& first, Args&&... args) { if (!is_empty(first)) return first; |