Fix improper Doxygen inline comments

The proper syntax is "//!<"
http://www.doxygen.nl/manual/docblocks.html#memberdoc
This commit is contained in:
Ben Woosley 2020-01-10 16:32:12 -08:00
parent e7f8450357
commit 498cdbb426
No known key found for this signature in database
GPG key ID: 6EE5F3785F78B345

View file

@ -71,11 +71,11 @@ struct SettingsSpan {
explicit SettingsSpan(const SettingsValue& value) noexcept : SettingsSpan(&value, 1) {}
explicit SettingsSpan(const SettingsValue* data, size_t size) noexcept : data(data), size(size) {}
explicit SettingsSpan(const std::vector<SettingsValue>& vec) noexcept;
const SettingsValue* begin() const; //<! Pointer to first non-negated value.
const SettingsValue* end() const; //<! Pointer to end of values.
bool empty() const; //<! True if there are any non-negated values.
bool last_negated() const; //<! True if the last value is negated.
size_t negated() const; //<! Number of negated values.
const SettingsValue* begin() const; //!< Pointer to first non-negated value.
const SettingsValue* end() const; //!< Pointer to end of values.
bool empty() const; //!< True if there are any non-negated values.
bool last_negated() const; //!< True if the last value is negated.
size_t negated() const; //!< Number of negated values.
const SettingsValue* data = nullptr;
size_t size = 0;