Fully qualify std::nullptr_t (#8044)
This happens to compile for some reason with libc++, but we don't open the std namespace so we should fully qualify it.
This commit is contained in:
parent
f32829ec29
commit
51ddddc8bb
|
@ -208,7 +208,7 @@ Tuple& Tuple::append(double value) {
|
|||
return *this;
|
||||
}
|
||||
|
||||
Tuple& Tuple::append(nullptr_t) {
|
||||
Tuple& Tuple::append(std::nullptr_t) {
|
||||
offsets.push_back(data.size());
|
||||
data.push_back(data.arena(), (uint8_t)'\x00');
|
||||
return *this;
|
||||
|
|
Loading…
Reference in New Issue