File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -437,23 +437,23 @@ class JSON_API Value {
437
437
// / \post type() is arrayValue
438
438
void resize (ArrayIndex newSize);
439
439
440
- // @{
440
+ // / @{
441
441
// / Access an array element (zero based index). If the array contains less
442
442
// / than index element, then null value are inserted in the array so that
443
443
// / its size is index+1.
444
444
// / (You may need to say 'value[0u]' to get your compiler to distinguish
445
445
// / this from the operator[] which takes a string.)
446
446
Value& operator [](ArrayIndex index);
447
447
Value& operator [](int index);
448
- // @}
448
+ // / @}
449
449
450
- // @{
450
+ // / @{
451
451
// / Access an array element (zero based index).
452
452
// / (You may need to say 'value[0u]' to get your compiler to distinguish
453
453
// / this from the operator[] which takes a string.)
454
454
const Value& operator [](ArrayIndex index) const ;
455
455
const Value& operator [](int index) const ;
456
- // @}
456
+ // / @}
457
457
458
458
// / If the array contains at least index+1 elements, returns the element
459
459
// / value, otherwise returns defaultValue.
You can’t perform that action at this time.
0 commit comments