Utils: Remove disabled warning

Seems to work on my GCC but lets see if older GCC can handle it.

Change-Id: I2932798da3691201f7dd4c8c981ae0dc29d01a86
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Marco Bubke
2023-09-27 10:46:52 +02:00
parent a914b550ed
commit 85da9d7af5

View File

@@ -33,11 +33,6 @@
#define unittest_public private
#endif
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
namespace Utils {
template<uint Size>
@@ -926,7 +921,3 @@ SmallString operator+(const char(&first)[Size], SmallStringView second)
}
} // namespace Utils
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic pop
#endif