diff options
| author | Ben Woosley <[email protected]> | 2020-01-10 16:32:12 -0800 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2020-01-10 16:32:40 -0800 |
| commit | 498cdbb42616bc1e6c44492c907678b4dce41870 (patch) | |
| tree | 5c7ae841cc26d8fb0a4e750708aab345700844ec /src | |
| parent | Merge #16688: log: Add validation interface logging (diff) | |
| download | discoin-498cdbb42616bc1e6c44492c907678b4dce41870.tar.xz discoin-498cdbb42616bc1e6c44492c907678b4dce41870.zip | |
Fix improper Doxygen inline comments
The proper syntax is "//!<"
http://www.doxygen.nl/manual/docblocks.html#memberdoc
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/settings.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/settings.h b/src/util/settings.h index 9ca581109..8d092ece8 100644 --- a/src/util/settings.h +++ b/src/util/settings.h @@ -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; |