Skip to content

Commit

Permalink
Added missing includes for std::istream.
Browse files Browse the repository at this point in the history
Thanks to Quentin Fiard for the report.
  • Loading branch information
jacobsa committed Jan 29, 2014
1 parent a3f19c2 commit 94d17e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/json/reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# include "value.h"
#endif // if !defined(JSON_IS_AMALGAMATION)
# include <deque>
# include <iosfwd>
# include <stack>
# include <string>

Expand Down
1 change: 1 addition & 0 deletions src/lib_json/json_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <cstdio>
#include <cassert>
#include <cstring>
#include <istream>
#include <stdexcept>

#if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0
Expand Down

0 comments on commit 94d17e9

Please sign in to comment.