Skip to content

Commit

Permalink
Fix #741
Browse files Browse the repository at this point in the history
  • Loading branch information
miloyip committed Sep 21, 2016
1 parent 185a7cc commit f28203c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rapidjson/writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class Writer {
#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
Writer(Writer&& rhs) :
os_(rhs.os_), level_stack_(std::move(rhs.level_stack_)), maxDecimalPlaces_(rhs.maxDecimalPlaces_), hasRoot_(rhs.hasRoot_) {
rhs.os_=nullptr;
rhs.os_ = 0;
}
#endif

Expand Down

0 comments on commit f28203c

Please sign in to comment.