diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2013-03-22 10:44:42 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2013-03-22 10:44:42 +0000 |
commit | 7ad689673f91f57394ed8d7229b6b0b5f2a189ed (patch) | |
tree | 8a92e95675529b7f1d62bbb41772fbdd2ec166f3 /libstdc++-v3 | |
parent | 1faae6ef50c9ad49a581cbff40a110e45ec83f23 (diff) | |
download | gcc-7ad689673f91f57394ed8d7229b6b0b5f2a189ed.zip gcc-7ad689673f91f57394ed8d7229b6b0b5f2a189ed.tar.gz gcc-7ad689673f91f57394ed8d7229b6b0b5f2a189ed.tar.bz2 |
re PR libstdc++/56678 ([c++11] non-uglified name in <chrono>)
2013-03-22 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/56678
* include/std/chrono (__is_ratio): Uglify T.
From-SVN: r196954
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/std/chrono | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 81426dc..2e1f141 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2013-03-22 Paolo Carlini <paolo.carlini@oracle.com> + + PR libstdc++/56678 + * include/std/chrono (__is_ratio): Uglify T. + 2013-03-18 Paolo Carlini <paolo.carlini@oracle.com> PR libstdc++/55977 (partial, std::vector and std::deque bits) diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index e4b92a5..7111319 100644 --- a/libstdc++-v3/include/std/chrono +++ b/libstdc++-v3/include/std/chrono @@ -225,7 +225,7 @@ _GLIBCXX_END_NAMESPACE_VERSION { return numeric_limits<_Rep>::lowest(); } }; - template<typename T> + template<typename _Tp> struct __is_ratio : std::false_type { }; |