Use std::nullptr_t in place of nullptr_t.

(It's not clear to me why only some projects/compilers are complaining
but other parts of the code are using the explicit namespace.)

Change-Id: I24b0c3b8104932b4ec82a25f5eb96c08abff87b5
Reviewed-on: https://dawn-review.googlesource.com/c/2901
Reviewed-by: Kai Ninomiya <kainino@chromium.org>
This commit is contained in:
Stephen White 2018-12-05 04:10:52 +00:00
parent 33af94fd8d
commit 006f218392
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ namespace dawn {
return static_cast<Derived&>(*this); return static_cast<Derived&>(*this);
} }
ObjectBase(nullptr_t) {} ObjectBase(std::nullptr_t) {}
Derived& operator=(nullptr_t) { Derived& operator=(std::nullptr_t) {
if (mHandle != nullptr) { if (mHandle != nullptr) {
Derived::DawnRelease(mHandle); Derived::DawnRelease(mHandle);
mHandle = nullptr; mHandle = nullptr;