Commit a5aeb770 authored by Dominik Charousset's avatar Dominik Charousset

Fix formatting

parent 17a85cab
......@@ -52,7 +52,7 @@ namespace caf {
/// type is not implemented as a simple variant alias because variants cannot
/// contain lists of themselves.
class CAF_CORE_EXPORT config_value {
public:
public:
// -- member types -----------------------------------------------------------
using integer = int64_t;
......@@ -104,8 +104,8 @@ class CAF_CORE_EXPORT config_value {
// -- parsing ----------------------------------------------------------------
/// Tries to parse a value from `str`.
static expected<config_value>
parse(string_view::iterator first, string_view::iterator last);
static expected<config_value> parse(string_view::iterator first,
string_view::iterator last);
/// Tries to parse a value from `str`.
static expected<config_value> parse(string_view str);
......@@ -149,7 +149,7 @@ class CAF_CORE_EXPORT config_value {
return &data_;
}
private:
private:
// -- properties -------------------------------------------------------------
static const char* type_name_at_index(size_t index) noexcept;
......@@ -839,8 +839,8 @@ inline bool operator!=(const config_value& x, const config_value& y) {
CAF_CORE_EXPORT std::string to_string(const config_value& x);
/// @relates config_value
CAF_CORE_EXPORT std::ostream&
operator<<(std::ostream& out, const config_value& x);
CAF_CORE_EXPORT std::ostream& operator<<(std::ostream& out,
const config_value& x);
template <class... Ts>
config_value make_config_value_list(Ts&&... xs) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment