diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-03-22 10:44:42 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-03-22 10:44:42 +0000 |
commit | 12338f9787822c1bd376a708e4746765cf3b14e9 (patch) | |
tree | 8a92e95675529b7f1d62bbb41772fbdd2ec166f3 /libstdc++-v3/include/std/chrono | |
parent | c74ed189625b725b15c94f7ec43c6cc36b172c43 (diff) | |
download | gcc-12338f9787822c1bd376a708e4746765cf3b14e9.tar.gz |
2013-03-22 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/56678
* include/std/chrono (__is_ratio): Uglify T.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@196954 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std/chrono')
-rw-r--r-- | libstdc++-v3/include/std/chrono | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index e4b92a59405..711131920f0 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 { }; |