Skip to content

Commit 8a70297

Browse files
committed
fix inline doxygen comments
1 parent 24f5449 commit 8a70297

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

include/json/value.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ class JSON_API Value {
134134
typedef Json::LargestUInt LargestUInt;
135135
typedef Json::ArrayIndex ArrayIndex;
136136

137-
static const Value& null; ///! We regret this reference to a global instance; prefer the simpler Value().
138-
static const Value& nullRef; ///! just a kludge for binary-compatibility; same as null
137+
static const Value& null; ///< We regret this reference to a global instance; prefer the simpler Value().
138+
static const Value& nullRef; ///< just a kludge for binary-compatibility; same as null
139139
/// Minimum signed integer value that can be stored in a Json::Value.
140140
static const LargestInt minLargestInt;
141141
/// Maximum signed integer value that can be stored in a Json::Value.
@@ -228,8 +228,8 @@ Json::Value obj_value(Json::objectValue); // {}
228228
Value(UInt64 value);
229229
#endif // if defined(JSON_HAS_INT64)
230230
Value(double value);
231-
Value(const char* value); ///! Copy til first 0. (NULL causes to seg-fault.)
232-
Value(const char* beginValue, const char* endValue); ///! Copy all, incl zeroes.
231+
Value(const char* value); ///< Copy til first 0. (NULL causes to seg-fault.)
232+
Value(const char* beginValue, const char* endValue); ///< Copy all, incl zeroes.
233233
/** \brief Constructs a value from a static string.
234234
235235
* Like other value string constructor but do not duplicate the string for
@@ -246,7 +246,7 @@ Json::Value obj_value(Json::objectValue); // {}
246246
* \endcode
247247
*/
248248
Value(const StaticString& value);
249-
Value(const std::string& value); ///! Copy data() til size(). Embedded zeroes too.
249+
Value(const std::string& value); ///< Copy data() til size(). Embedded zeroes too.
250250
#ifdef JSON_USE_CPPTL
251251
Value(const CppTL::ConstString& value);
252252
#endif
@@ -273,8 +273,8 @@ Json::Value obj_value(Json::objectValue); // {}
273273
bool operator!=(const Value& other) const;
274274
int compare(const Value& other) const;
275275

276-
const char* asCString() const; ///! Embedded zeroes could cause you trouble!
277-
std::string asString() const; ///! Embedded zeroes are possible.
276+
const char* asCString() const; ///< Embedded zeroes could cause you trouble!
277+
std::string asString() const; ///< Embedded zeroes are possible.
278278
/** Get raw char* of string-value.
279279
* \return false if !string. (Seg-fault if str or end are NULL.)
280280
*/

0 commit comments

Comments
 (0)