From e37e3ad0fc67cca41c35c0e1f0dfdd53a80b33e1 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 May 2015 14:58:24 +0200 Subject: Qualify nullptr_t with std:: --- build/variable | 2 +- build/variable.ixx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build/variable b/build/variable index ec5fa85..389f4c8 100644 --- a/build/variable +++ b/build/variable @@ -131,7 +131,7 @@ namespace build operator= (dir_path) const; const value_proxy& - operator= (nullptr_t) const; + operator= (std::nullptr_t) const; // Append. // diff --git a/build/variable.ixx b/build/variable.ixx index 7cbd8f4..b0ff021 100644 --- a/build/variable.ixx +++ b/build/variable.ixx @@ -57,7 +57,7 @@ namespace build } inline const value_proxy& value_proxy:: - operator= (nullptr_t) const + operator= (std::nullptr_t) const { p->reset (); return *this; -- cgit v1.1