From 5efb019d8bdc593b3c1a0b57d615b170c7dab02a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 1 Mar 2017 06:10:06 -0500 Subject: Add C++ nullptr support (Issue 383) --- simple.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'simple.h') diff --git a/simple.h b/simple.h index 7b0e8ca6..2b92d343 100644 --- a/simple.h +++ b/simple.h @@ -262,7 +262,7 @@ public: // void ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1) // {PropagateMessageSeriesEnd(propagation, channel);} byte * ChannelCreatePutSpace(const std::string &channel, size_t &size) - {CRYPTOPP_UNUSED(channel); size = 0; return NULL;} + {CRYPTOPP_UNUSED(channel); size = 0; return NULLPTR;} bool ChannelPutModifiable(const std::string &channel, byte *inString, size_t length) {this->ChannelPut(channel, inString, length); return false;} -- cgit v1.2.1