]> gcc.gnu.org Git - gcc.git/commitdiff
libstdc++: Suppress -Waddress warning in tzdb.cc [PR108228]
authorJonathan Wakely <jwakely@redhat.com>
Fri, 6 Jan 2023 20:54:23 +0000 (20:54 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 6 Jan 2023 21:06:28 +0000 (21:06 +0000)
For some tarets the weak symbol is always defined, so we get a warning
that its address is never null. The warning isn't useful in this case,
so suppress it.

libstdc++-v3/ChangeLog:

PR libstdc++/108228
* src/c++20/tzdb.cc (zoneinfo_dir): Add diagnostic pragma.

libstdc++-v3/src/c++20/tzdb.cc

index fa4f4c7a30c03f44694fd330d9aff17e490c9ed3..7227fe7cfe641a96e8f07d7e15f919b0c2474f54 100644 (file)
@@ -1013,9 +1013,12 @@ namespace std::chrono
     string
     zoneinfo_dir()
     {
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Waddress"
       static const string dir = __gnu_cxx::zoneinfo_dir_override
                                  ? __gnu_cxx::zoneinfo_dir_override()
                                  : _GLIBCXX_ZONEINFO_DIR;
+#pragma GCC diagnostic pop
       return dir;
     }
 
This page took 0.061244 seconds and 5 git commands to generate.