Skip to content

Commit 13adc31

Browse files
committed
Fix VC++ forward friend declarations
1 parent 148d666 commit 13adc31

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

include/simdjson/generic/ondemand/array_iterator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ namespace simdjson {
44
namespace SIMDJSON_IMPLEMENTATION {
55
namespace ondemand {
66

7+
class array;
78
class value;
89
class document;
910

include/simdjson/generic/ondemand/json_iterator.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ namespace simdjson {
22
namespace SIMDJSON_IMPLEMENTATION {
33
namespace ondemand {
44

5+
class document;
6+
class object;
7+
class array;
8+
class value;
9+
class raw_json_string;
10+
class parser;
511
class json_iterator_ref;
612

713
/**

include/simdjson/generic/ondemand/raw_json_string.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ namespace simdjson {
44
namespace SIMDJSON_IMPLEMENTATION {
55
namespace ondemand {
66

7+
class object;
78
class parser;
89

910
/**

0 commit comments

Comments
 (0)