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 @@ -428,7 +428,7 @@ namespace claujson {
428
428
}
429
429
}
430
430
431
- StructuredPtr (nullptr_t ) : arr(nullptr ), type(0 ) {
431
+ StructuredPtr (std:: nullptr_t ) : arr(nullptr ), type(0 ) {
432
432
//
433
433
}
434
434
StructuredPtr (Array* arr) : arr(arr), type(1 )
@@ -525,16 +525,16 @@ namespace claujson {
525
525
void erase (uint64_t idx, bool real = false );
526
526
void erase (const _Value& key, bool real = false );
527
527
528
- bool operator ==(nullptr_t ) {
528
+ bool operator ==(std:: nullptr_t ) {
529
529
return !arr;
530
530
}
531
531
bool operator ==(StructuredPtr p) {
532
532
return arr == p.arr && type == p.type ;
533
533
}
534
- bool operator !=(nullptr_t ) {
534
+ bool operator !=(std:: nullptr_t ) {
535
535
return arr;
536
536
}
537
- void operator =(nullptr_t ) {
537
+ void operator =(std:: nullptr_t ) {
538
538
arr = nullptr ;
539
539
type = 0 ;
540
540
}
You can’t perform that action at this time.
0 commit comments