From f8c8c32b42ee9db055f325252d6f6fc57a34fdf5 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 26 Mar 2018 13:16:31 +0200 Subject: [PATCH] fix C++03 compatibility --- test/unittest/schematest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unittest/schematest.cpp b/test/unittest/schematest.cpp index 951e9ff..9c78add 100644 --- a/test/unittest/schematest.cpp +++ b/test/unittest/schematest.cpp @@ -2015,7 +2015,7 @@ TEST(SchemaValidator, Ref_remote_issue1210) { return collection[i]; } }; - SchemaDocument* collection[] { 0, 0, 0 }; + SchemaDocument* collection[] = { 0, 0, 0 }; SchemaDocumentProvider provider(collection); Document x, y, z;