We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9763bc6 + 974e009 commit 7926328Copy full SHA for 7926328
1 file changed
src/config/parser.cpp
@@ -28,7 +28,6 @@ namespace config {
28
29
using namespace std::filesystem;
30
using namespace boost::program_options;
31
-using namespace boost::system;
32
33
BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
34
@@ -93,7 +92,7 @@ bool parser::load_configuration_variables(variables_map& variables,
93
92
const auto config_path = get_config_option(variables, option_name);
94
95
// If the existence test errors out we pretend there's no file :/.
96
- error_code code;
+ std::error_code code;
97
if (!config_path.empty() && exists(config_path, code))
98
{
99
const auto& path = config_path.string();
0 commit comments