Xcode: turn on and resolve all warnings

This commit is contained in:
Simon Rozman
2024-02-14 15:05:41 +01:00
parent 0560c7bce9
commit 0a719e3081
18 changed files with 197 additions and 37 deletions

View File

@@ -22,6 +22,10 @@ namespace Microsoft {
}
}
#endif
#if defined(__GNUC__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wexit-time-destructors"
#endif
namespace UnitTests
{
@@ -495,3 +499,7 @@ namespace UnitTests
// "\r\n";
}
}
#if defined(__GNUC__)
#pragma GCC diagnostic pop
#endif