diff options
author | louiz’ <louiz@louiz.org> | 2020-05-04 23:55:39 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2020-05-09 14:40:56 +0200 |
commit | f76cd93aff1610c9b4c720a73f6d585e8008dfd1 (patch) | |
tree | eef71f4e81e72bda3068687185de5e427a1bd8a1 /src/utils/empty_if_fixed_server.hpp | |
parent | c671da13b38dcc15d0a441b1b9c258cb12966fca (diff) | |
download | biboumi-f76cd93aff1610c9b4c720a73f6d585e8008dfd1.tar.gz biboumi-f76cd93aff1610c9b4c720a73f6d585e8008dfd1.tar.bz2 biboumi-f76cd93aff1610c9b4c720a73f6d585e8008dfd1.tar.xz biboumi-f76cd93aff1610c9b4c720a73f6d585e8008dfd1.zip |
Fix clang warnings on some utils function. It’s also faster
Diffstat (limited to 'src/utils/empty_if_fixed_server.hpp')
-rw-r--r-- | src/utils/empty_if_fixed_server.hpp | 12 |
1 files changed, 3 insertions, 9 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; } |