Skip to content

Commit 5415a5f

Browse files
committed
include <sstream> in vrpathregistry_public.cpp
std::istringstream requires this include. Currently it is accidentally pulled in by including json.h. Other jsoncpp versions don't provide that include, for example with ValveSoftware#1178 the build breaks on debian stable.
1 parent 26fa19e commit 5415a5f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/vrcommon/vrpathregistry_public.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
#include "strtools_public.h"
88
#include "dirtools_public.h"
99

10+
#include <sstream>
11+
1012
#if defined( WIN32 )
1113
#include <windows.h>
1214
#include <shlobj.h>

0 commit comments

Comments
 (0)