Skip to content

Commit

Permalink
Fix "invalid use of incomplete type ‘std::stringstream'" (#25)
Browse files Browse the repository at this point in the history
Include <sstream> to fix this issue for gcc8 on linux
  • Loading branch information
kakaly authored and troian committed Jan 3, 2020
1 parent 1db80a4 commit 37ac531
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/claims.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

#include <sstream>

#include <josepp/claims.hpp>
#include <josepp/b64.hpp>
#include <josepp/tools.hpp>
Expand Down
1 change: 1 addition & 0 deletions src/tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
// SOFTWARE.

#include <iostream>
#include <sstream>

#include <josepp/tools.hpp>
#include <josepp/b64.hpp>
Expand Down

0 comments on commit 37ac531

Please sign in to comment.