Commit a5aeb770 authored by Dominik Charousset's avatar Dominik Charousset

Fix formatting

parent 17a85cab
...@@ -52,7 +52,7 @@ namespace caf { ...@@ -52,7 +52,7 @@ namespace caf {
/// type is not implemented as a simple variant alias because variants cannot /// type is not implemented as a simple variant alias because variants cannot
/// contain lists of themselves. /// contain lists of themselves.
class CAF_CORE_EXPORT config_value { class CAF_CORE_EXPORT config_value {
public: public:
// -- member types ----------------------------------------------------------- // -- member types -----------------------------------------------------------
using integer = int64_t; using integer = int64_t;
...@@ -104,8 +104,8 @@ class CAF_CORE_EXPORT config_value { ...@@ -104,8 +104,8 @@ class CAF_CORE_EXPORT config_value {
// -- parsing ---------------------------------------------------------------- // -- parsing ----------------------------------------------------------------
/// Tries to parse a value from `str`. /// Tries to parse a value from `str`.
static expected<config_value> static expected<config_value> parse(string_view::iterator first,
parse(string_view::iterator first, string_view::iterator last); string_view::iterator last);
/// Tries to parse a value from `str`. /// Tries to parse a value from `str`.
static expected<config_value> parse(string_view str); static expected<config_value> parse(string_view str);
...@@ -149,7 +149,7 @@ class CAF_CORE_EXPORT config_value { ...@@ -149,7 +149,7 @@ class CAF_CORE_EXPORT config_value {
return &data_; return &data_;
} }
private: private:
// -- properties ------------------------------------------------------------- // -- properties -------------------------------------------------------------
static const char* type_name_at_index(size_t index) noexcept; 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) { ...@@ -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); CAF_CORE_EXPORT std::string to_string(const config_value& x);
/// @relates config_value /// @relates config_value
CAF_CORE_EXPORT std::ostream& CAF_CORE_EXPORT std::ostream& operator<<(std::ostream& out,
operator<<(std::ostream& out, const config_value& x); const config_value& x);
template <class... Ts> template <class... Ts>
config_value make_config_value_list(Ts&&... xs) { 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