mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
Fix improper Doxygen inline comments
The proper syntax is "//!<" http://www.doxygen.nl/manual/docblocks.html#memberdoc
This commit is contained in:
parent
e7f8450357
commit
498cdbb426
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue