Commit 879def80 authored by Milo Yip's avatar Milo Yip

Merge pull request #209 from pah/fixes/208-stringbuffer-move

stringbuffer.h: add missing include for std::move (fixes #208)
parents 320eff1c 8794bbd8
......@@ -22,6 +22,11 @@
#define RAPIDJSON_STRINGBUFFER_H_
#include "rapidjson.h"
#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
#include <utility> // std::move
#endif
#include "internal/stack.h"
RAPIDJSON_NAMESPACE_BEGIN
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment