From 4507ffdcb711066edb2597a3c30c7a0ab22ce952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Fri, 27 May 2016 11:25:17 +0200 Subject: [PATCH] Fix clang builds --- src/core/Nullable.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Nullable.hpp b/src/core/Nullable.hpp index 67ba9b2c51..869d6d8ebe 100644 --- a/src/core/Nullable.hpp +++ b/src/core/Nullable.hpp @@ -28,7 +28,7 @@ public: _hasValue = false; } - Nullable(nullptr_t) + Nullable(std::nullptr_t) { _value = T(); _hasValue = false;