Skip to content

Commit

Permalink
Fix "invalid use of incomplete type ‘std::stringstream'" (#36)
Browse files Browse the repository at this point in the history
* Fix "invalid use of incomplete type ‘std::stringstream'"

Include <sstream> to fix this issue for gcc7/8 on linux

Same fix as 37ac531 but
for new files, I guess

* FIx Moved includes to jwtpp.hh

Co-authored-by: Anton Schmidt <[email protected]>
  • Loading branch information
sa2304 and Anton Schmidt authored Jun 16, 2020
1 parent e896f24 commit 4ce1b9b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/export/jwtpp/jwtpp.hh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <functional>
#include <vector>
#include <string>
#include <sstream>

#include <json/json.h>

Expand Down

0 comments on commit 4ce1b9b

Please sign in to comment.