File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ class oop {
100100 bool operator ==(const oop& o) const { return _o == o._o ; }
101101 bool operator !=(const oop& o) const { return _o != o._o ; }
102102
103- bool operator ==(nullptr_t ) const { return _o == nullptr ; }
104- bool operator !=(nullptr_t ) const { return _o != nullptr ; }
103+ bool operator ==(std:: nullptr_t ) const { return _o == nullptr ; }
104+ bool operator !=(std:: nullptr_t ) const { return _o != nullptr ; }
105105
106106 oop& operator =(const oop& o) { _o = o._o ; return *this ; }
107107};
Original file line number Diff line number Diff line change 3434
3535#include COMPILER_HEADER(utilities/globalDefinitions)
3636
37+ #include < cstddef>
38+
3739class oopDesc ;
3840
3941// Defaults for macros that might be defined per compiler.
You can’t perform that action at this time.
0 commit comments