-
- Downloads
libstdc++: Fix constexpr functions to conform to older standards
Some constexpr functions were inadvertently relying on relaxed constexpr rules from later standards. libstdc++-v3/ChangeLog: * include/bits/chrono.h (duration_cast): Do not use braces around statements for C++11 constexpr rules. * include/bits/stl_algobase.h (__lg): Rewrite as a single statement for C++11 constexpr rules. * include/experimental/bits/fs_path.h (path::string): Use _GLIBCXX17_CONSTEXPR not _GLIBCXX_CONSTEXPR for 'if constexpr'. * include/std/charconv (__to_chars_8): Initialize variable for C++17 constexpr rules.
Showing
- libstdc++-v3/include/bits/chrono.h 4 additions, 2 deletionslibstdc++-v3/include/bits/chrono.h
- libstdc++-v3/include/bits/stl_algobase.h 6 additions, 9 deletionslibstdc++-v3/include/bits/stl_algobase.h
- libstdc++-v3/include/experimental/bits/fs_path.h 1 addition, 1 deletionlibstdc++-v3/include/experimental/bits/fs_path.h
- libstdc++-v3/include/std/charconv 1 addition, 1 deletionlibstdc++-v3/include/std/charconv
Loading
Please register or sign in to comment