Format core source files

Formatted core .cc files according to current uncrustify configuration.
This commit is contained in:
Markus Mäkelä
2019-05-06 09:10:25 +03:00
parent 5ac24de6b0
commit 6b8ca35408
20 changed files with 307 additions and 301 deletions

View File

@ -58,7 +58,6 @@ bool is_core_param(Specification::Kind kind, const std::string& param)
return rv;
}
}
namespace config
@ -176,7 +175,7 @@ bool Specification::configure(Configuration& configuration, const MXS_CONFIG_PAR
const Param* pParam = find_param(name.c_str());
config::Type* pValue = configuration.find_value(name.c_str());
mxb_assert(pValue && pParam); // Should have been validated.
mxb_assert(pValue && pParam); // Should have been validated.
mxb_assert(&pValue->parameter() == pParam);
if (pParam && pValue)
@ -791,5 +790,4 @@ std::string ParamString::to_string(value_type value) const
ss << "\"" << value << "\"";
return ss.str();
}
}