Skip to content

Commit fe1a29c

Browse files
author
Steve Hanson
committed
fix platform-dependent compiler error with >>
1 parent ad73c03 commit fe1a29c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unittest/schematest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2918,7 +2918,7 @@ TEST(SchemaValidator, Schema_UnknownError) {
29182918

29192919
TEST(SchemaValidator, Uri_Parse) {
29202920
typedef std::basic_string<Value::Ch> String;
2921-
typedef Uri<GenericSchemaDocument<Value, MemoryPoolAllocator<> >> Uri;
2921+
typedef Uri<GenericSchemaDocument<Value, MemoryPoolAllocator<> > > Uri;
29222922
MemoryPoolAllocator<CrtAllocator> allocator;
29232923

29242924
String s = "http://auth/path?query#frag";
@@ -3028,7 +3028,7 @@ TEST(SchemaValidator, Uri_Parse) {
30283028

30293029
TEST(SchemaValidator, Uri_Resolve) {
30303030
typedef std::basic_string<Value::Ch> String;
3031-
typedef Uri<GenericSchemaDocument<Value, MemoryPoolAllocator<> >> Uri;
3031+
typedef Uri<GenericSchemaDocument<Value, MemoryPoolAllocator<> > > Uri;
30323032

30333033
// ref is full uri
30343034
Uri base = Uri(String("http://auth/path/#frag"));

0 commit comments

Comments
 (0)