mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 04:40:27 +08:00
libstdc++: Fix variable declared with wrong type
libstdc++-v3/ChangeLog: * include/bits/semaphore_base.h (__platform_semaphore::_M_try_acquire_until): Fix type of variable.
This commit is contained in:
parent
0986d3bc62
commit
1ccee0fbfa
@ -141,7 +141,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||
else
|
||||
{
|
||||
const typename _Clock::time_point __c_entry = _Clock::now();
|
||||
const __clock_t __s_entry = __clock_t::now();
|
||||
const auto __s_entry = __clock_t::now();
|
||||
const auto __delta = __atime - __c_entry;
|
||||
const auto __s_atime = __s_entry + __delta;
|
||||
if (_M_try_acquire_until_impl(__s_atime))
|
||||
|
Loading…
x
Reference in New Issue
Block a user