From 1b4447931173907f8d3d9a76e4e88f24eab9364d Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 31 Jul 2013 09:37:36 -0700 Subject: [PATCH] Default parameter to false --- modules/beast_core/streams/beast_MemoryInputStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/beast_core/streams/beast_MemoryInputStream.h b/modules/beast_core/streams/beast_MemoryInputStream.h index d3e0d0b8d..038feab6e 100644 --- a/modules/beast_core/streams/beast_MemoryInputStream.h +++ b/modules/beast_core/streams/beast_MemoryInputStream.h @@ -53,7 +53,7 @@ public: */ MemoryInputStream (const void* sourceData, size_t sourceDataSize, - bool keepInternalCopyOfData); + bool keepInternalCopyOfData = false); /** Creates a MemoryInputStream.