Commit ffd389be authored by Force.Charlie-I's avatar Force.Charlie-I

自定义流应当使用 ParseStream 而不是 Parse

parent bc4551b5
......@@ -320,7 +320,7 @@ std::stringstream ss(json);
IStreamWrapper is(ss);
Document d;
d.Parse(is);
d.ParseStream(is);
~~~~~~~~~~
但要注意,由于标准库的内部开销问,此实现的性能可能不如RapidJSON的内存/文件流。
......
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