@@ -289,7 +289,7 @@ class BytesView : public Copyable<::z_bytes_t> {
289
289
// / @name Constructors
290
290
291
291
// / @brief Constructs an uninitialized instance
292
- BytesView (nullptr_t ) : Copyable(init(nullptr , 0 )) {}
292
+ BytesView (std:: nullptr_t ) : Copyable(init(nullptr , 0 )) {}
293
293
// / Constructs an instance from an array of bytes
294
294
// / @param s the array of bytes
295
295
// / @param _len the length of the array
@@ -507,7 +507,7 @@ struct KeyExprView : public Copyable<::z_keyexpr_t> {
507
507
// / @name Constructors
508
508
509
509
// / @brief Constructs an uninitialized instance
510
- KeyExprView (nullptr_t ) : Copyable(::z_keyexpr(nullptr )) {}
510
+ KeyExprView (std:: nullptr_t ) : Copyable(::z_keyexpr(nullptr )) {}
511
511
// / @brief Constructs an instance from a null-terminated string representing a key expression.
512
512
KeyExprView (const char * name) : Copyable(::z_keyexpr(name)) {}
513
513
// / @brief Constructs an instance from a null-terminated string representing a key expression withot validating it
@@ -1597,7 +1597,7 @@ class KeyExpr : public Owned<::z_owned_keyexpr_t> {
1597
1597
// / @name Constructors
1598
1598
1599
1599
// / @brief Create an uninitialized instance
1600
- explicit KeyExpr (nullptr_t ) : Owned(nullptr ) {}
1600
+ explicit KeyExpr (std:: nullptr_t ) : Owned(nullptr ) {}
1601
1601
1602
1602
// / @brief Create a new instance from a null-terminated string
1603
1603
explicit KeyExpr (const char * name) : Owned(::z_keyexpr_new(name)) {}
@@ -1979,7 +1979,7 @@ class Session : public Owned<::z_owned_session_t> {
1979
1979
// generated by the compiler anymore
1980
1980
//
1981
1981
Session (Session&& other) : Owned(std::move(other)) {}
1982
- Session (nullptr_t ) : Owned(nullptr ) {}
1982
+ Session (std:: nullptr_t ) : Owned(nullptr ) {}
1983
1983
Session&& operator =(Session&& other);
1984
1984
void drop ();
1985
1985
~Session () { drop (); }
0 commit comments