stringbuffer.h: add missing include for std::move (fixes #208)

This commit is contained in:
Philipp A. Hartmann 2014-12-08 15:41:58 +01:00
parent 320eff1c21
commit 760883c2e8

View File

@ -21,6 +21,10 @@
#ifndef RAPIDJSON_STRINGBUFFER_H_
#define RAPIDJSON_STRINGBUFFER_H_
#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
#include <utility> // std::move
#endif
#include "rapidjson.h"
#include "internal/stack.h"