Skip to content

Commit 498cdbb

Browse files
committed
Fix improper Doxygen inline comments
The proper syntax is "//!<" http://www.doxygen.nl/manual/docblocks.html#memberdoc
1 parent e7f8450 commit 498cdbb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/util/settings.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ struct SettingsSpan {
7171
explicit SettingsSpan(const SettingsValue& value) noexcept : SettingsSpan(&value, 1) {}
7272
explicit SettingsSpan(const SettingsValue* data, size_t size) noexcept : data(data), size(size) {}
7373
explicit SettingsSpan(const std::vector<SettingsValue>& vec) noexcept;
74-
const SettingsValue* begin() const; //<! Pointer to first non-negated value.
75-
const SettingsValue* end() const; //<! Pointer to end of values.
76-
bool empty() const; //<! True if there are any non-negated values.
77-
bool last_negated() const; //<! True if the last value is negated.
78-
size_t negated() const; //<! Number of negated values.
74+
const SettingsValue* begin() const; //!< Pointer to first non-negated value.
75+
const SettingsValue* end() const; //!< Pointer to end of values.
76+
bool empty() const; //!< True if there are any non-negated values.
77+
bool last_negated() const; //!< True if the last value is negated.
78+
size_t negated() const; //!< Number of negated values.
7979

8080
const SettingsValue* data = nullptr;
8181
size_t size = 0;

0 commit comments

Comments
 (0)