aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2020-01-10 16:32:12 -0800
committerBen Woosley <ben.woosley@gmail.com>2020-01-10 16:32:40 -0800
commit498cdbb42616bc1e6c44492c907678b4dce41870 (patch)
tree5c7ae841cc26d8fb0a4e750708aab345700844ec /src/util
parente7f84503571c171a7e6728cd2d77dd4103bd7a6f (diff)
downloadbitcoin-498cdbb42616bc1e6c44492c907678b4dce41870.tar.xz
Fix improper Doxygen inline comments
The proper syntax is "//!<" http://www.doxygen.nl/manual/docblocks.html#memberdoc
Diffstat (limited to 'src/util')
-rw-r--r--src/util/settings.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/settings.h b/src/util/settings.h
index 9ca581109d..8d092ece8f 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;