[libstdc++] Remove unused hasher instance.
authorThomas Rodgers <rodgert@appliantology.com>
Tue, 8 Jun 2021 22:41:31 +0000 (15:41 -0700)
committerThomas Rodgers <rodgert@appliantology.com>
Tue, 8 Jun 2021 22:41:31 +0000 (15:41 -0700)
This is a remnant of poorly executed refactoring.

libstdc++-v3/ChangeLog:

* include/std/barrier (__tree_barrier::_M_arrive): Remove
unnecessary hasher instantiation.

libstdc++-v3/include/std/barrier

index fd61fb4..4210e30 100644 (file)
@@ -103,7 +103,6 @@ It looks different from literature pseudocode for two main reasons:
                           static_cast<__barrier_phase_t>(__old_phase_val + 2);
 
        size_t __current_expected = _M_expected;
-       std::hash<std::thread::id> __hasher;
        __current %= ((_M_expected + 1) >> 1);
 
        for (int __round = 0; ; ++__round)