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:
Andrew Noyes 2022-08-30 13:39:31 -07:00 committed by GitHub
parent f32829ec29
commit 51ddddc8bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;