From 760883c2e8d8cbb66d7f9114425741eb250043e6 Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Mon, 8 Dec 2014 15:41:58 +0100 Subject: [PATCH] stringbuffer.h: add missing include for std::move (fixes #208) --- include/rapidjson/stringbuffer.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/rapidjson/stringbuffer.h b/include/rapidjson/stringbuffer.h index 6ffc1e0..151c3b6 100644 --- a/include/rapidjson/stringbuffer.h +++ b/include/rapidjson/stringbuffer.h @@ -21,6 +21,10 @@ #ifndef RAPIDJSON_STRINGBUFFER_H_ #define RAPIDJSON_STRINGBUFFER_H_ +#if RAPIDJSON_HAS_CXX11_RVALUE_REFS +#include // std::move +#endif + #include "rapidjson.h" #include "internal/stack.h"