~singpolyma/biboumi

c91fac82da5d3cae0f363eb6b75017808837125b — louiz’ 3 years ago 12feb15
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)