From fe1a29ca6910f2b5ac246c42e09b4db23796f861 Mon Sep 17 00:00:00 2001 From: Steve Hanson Date: Thu, 25 Feb 2021 23:54:44 +0000 Subject: [PATCH] fix platform-dependent compiler error with >> --- test/unittest/schematest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unittest/schematest.cpp b/test/unittest/schematest.cpp index d84fcd4..a076389 100644 --- a/test/unittest/schematest.cpp +++ b/test/unittest/schematest.cpp @@ -2918,7 +2918,7 @@ TEST(SchemaValidator, Schema_UnknownError) { TEST(SchemaValidator, Uri_Parse) { typedef std::basic_string String; - typedef Uri >> Uri; + typedef Uri > > Uri; MemoryPoolAllocator allocator; String s = "http://auth/path?query#frag"; @@ -3028,7 +3028,7 @@ TEST(SchemaValidator, Uri_Parse) { TEST(SchemaValidator, Uri_Resolve) { typedef std::basic_string String; - typedef Uri >> Uri; + typedef Uri > > Uri; // ref is full uri Uri base = Uri(String("http://auth/path/#frag"));