File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Sources/OpenGraph_SPI/Attribute Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class AttributeID final {
2222 enum class Kind : uint8_t {
2323 Direct = 0x0 ,
2424 Indirect = 0x1 ,
25- Nil = 0x2 ,
25+ Null = 0x2 ,
2626 };
2727private:
2828 uint32_t _rawValue;
@@ -59,8 +59,8 @@ class AttributeID final {
5959 }
6060
6161 OG_INLINE OG_CONSTEXPR
62- const bool isNil () const OG_NOEXCEPT {
63- return getKind () == Kind::Nil ;
62+ const bool isNull () const OG_NOEXCEPT {
63+ return getKind () == Kind::Null ;
6464 }
6565
6666 OG_INLINE OG_CONSTEXPR
Original file line number Diff line number Diff line change 1111#include " ../Util/assert.hpp"
1212#include < optional>
1313
14- const OGAttribute OGAttributeNil = OGAttribute(OG::AttributeID::Kind::Nil );
14+ const OGAttribute OGAttributeNil = OGAttribute(OG::AttributeID::Kind::Null );
1515
1616OGAttribute OGGraphGetCurrentAttribute () {
1717 // TODO
You can’t perform that action at this time.
0 commit comments