public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-5260] libstdc++: Fix variable declared with wrong type
@ 2020-11-23 18:30 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2020-11-23 18:30 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:1ccee0fbfa8e528b3671dfbf4dad5b6f67755e4c

commit r11-5260-g1ccee0fbfa8e528b3671dfbf4dad5b6f67755e4c
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Nov 23 18:16:44 2020 +0000

    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.

Diff:
---
 libstdc++-v3/include/bits/semaphore_base.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/bits/semaphore_base.h b/libstdc++-v3/include/bits/semaphore_base.h
index 0692f95f24f..56333bbbfef 100644
--- a/libstdc++-v3/include/bits/semaphore_base.h
+++ b/libstdc++-v3/include/bits/semaphore_base.h
@@ -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))


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-11-23 18:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-23 18:30 [gcc r11-5260] libstdc++: Fix variable declared with wrong type Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).