# HG changeset patch # User Sebastien Jodogne # Date 1639132656 -3600 # Node ID c26c18e876e3b571441a3fe590cb8b173523c329 # Parent 4d83d27a955ea0630251ef8d730159ddc241a133 fix compatibility with C++03 in unit tests diff -r 4d83d27a955e -r c26c18e876e3 UnitTestsSources/GenericToolboxTests.cpp --- a/UnitTestsSources/GenericToolboxTests.cpp Wed Nov 24 12:25:32 2021 +0100 +++ b/UnitTestsSources/GenericToolboxTests.cpp Fri Dec 10 11:37:36 2021 +0100 @@ -31,7 +31,7 @@ #if __cplusplus >= 201103L // Is C++11? # include // For PRId64 #else -# define PRId64 "%lld" +# define PRId64 "ld" #endif TEST(GenericToolbox, TestLegitDoubleString)