From 0cf9706fa87e5e67b4b29bf19fa112ecfb4465b3 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Tue, 19 Jun 2018 22:13:47 +0200 Subject: [PATCH] [DEV] update etk null --- etk/NullPtr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etk/NullPtr.hpp b/etk/NullPtr.hpp index cc35b52..305b54b 100644 --- a/etk/NullPtr.hpp +++ b/etk/NullPtr.hpp @@ -23,12 +23,12 @@ namespace etk { } }; inline NullPtr getNullPointer() { - // etk::nullptr exists. + // etk::null exists. NullPtr n = { }; return n; } } -// We does not use nullptr ==> specific STD, can not be overload, and this permit to have a compatibility with STD +// We does not use null ==> specific STD, can not be overload, and this permit to have a compatibility with STD #if !defined(null) #define null etk::getNullPointer() #endif