blob: 9ccf5fdde383dd2cd9344bf9ab9375de62e5822d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#include <string>
#include <config/config.hpp>
namespace utils
{
inline std::string empty_if_fixed_server(std::string&& str)
{
if (!Config::get("fixed_irc_server", "").empty())
return {};
return str;
}
inline std::string empty_if_fixed_server(const std::string& str)
{
if (!Config::get("fixed_irc_server", "").empty())
return {};
return str;
}
}
|