[CodeGen] Add std:: qualifier

Hopefully addresses the buildbot failures.
This commit is contained in:
Nikita Popov 2021-12-14 12:17:55 +01:00
parent b8d121eb1d
commit b81450afb6
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class Address {
CharUnits Alignment;
protected:
Address(nullptr_t) : Pointer(nullptr) {}
Address(std::nullptr_t) : Pointer(nullptr) {}
public:
Address(llvm::Value *pointer, CharUnits alignment)
@ -76,7 +76,7 @@ public:
/// A specialization of Address that requires the address to be an
/// LLVM Constant.
class ConstantAddress : public Address {
ConstantAddress(nullptr_t) : Address(nullptr) {}
ConstantAddress(std::nullptr_t) : Address(nullptr) {}
public:
ConstantAddress(llvm::Constant *pointer, CharUnits alignment)