Add link to Bugzilla.

GitOrigin-RevId: dae1d7c19efa57c8b44df4d9cc17acd96cefdc60
This commit is contained in:
levlam 2019-02-13 03:52:34 +03:00
parent 0063ebe1cc
commit b336c8466e

View File

@ -19,6 +19,7 @@ class HazardPointers {
explicit HazardPointers(size_t threads_n) : threads_(threads_n) {
for (auto &data : threads_) {
for (auto &ptr : data.hazard) {
// workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64658
#if TD_GCC && GCC_VERSION <= 40902
ptr = nullptr;
#else