Fix a std::move() warning with clang
1 files changed, 1 insertions(+), 1 deletions(-) M src/utils/empty_if_fixed_server.hpp
M src/utils/empty_if_fixed_server.hpp => src/utils/empty_if_fixed_server.hpp +1 -1
@@ 11,7 11,7 @@ namespace utils { if (!Config::get("fixed_irc_server", "").empty()) return {}; - return str; + return std::move(str); } inline std::string empty_if_fixed_server(const std::string& str)