Commit 0736fd56 by Paolo Carlini Committed by Paolo Carlini

type_traits: Minor tweak.

2004-12-12  Paolo Carlini  <pcarlini@suse.de>

	* include/tr1/type_traits: Minor tweak.
	* testsuite/tr1/4_metaprogramming/type_properties/extent/
	typedefs.cc: Fix date.

From-SVN: r92062
parent b8c26d70
2004-12-12 Paolo Carlini <pcarlini@suse.de> 2004-12-12 Paolo Carlini <pcarlini@suse.de>
* include/tr1/type_traits: Minor tweak.
* testsuite/tr1/4_metaprogramming/type_properties/extent/
typedefs.cc: Fix date.
2004-12-12 Paolo Carlini <pcarlini@suse.de>
* include/tr1/type_traits: Implement extent. * include/tr1/type_traits: Implement extent.
* testsuite/tr1/4_metaprogramming/type_properties/extent/ * testsuite/tr1/4_metaprogramming/type_properties/extent/
extent.cc: New. extent.cc: New.
......
...@@ -49,11 +49,11 @@ namespace tr1 ...@@ -49,11 +49,11 @@ namespace tr1
struct _Spec \ struct _Spec \
: public true_type { }; : public true_type { };
#define _DEFINE_SPEC(_Header, _Primary, _Type) \ #define _DEFINE_SPEC(_Header, _Trait, _Type) \
_DEFINE_SPEC_HELPER(_Header, _Primary<_Type>) \ _DEFINE_SPEC_HELPER(_Header, _Trait<_Type>) \
_DEFINE_SPEC_HELPER(_Header, _Primary<_Type const>) \ _DEFINE_SPEC_HELPER(_Header, _Trait<_Type const>) \
_DEFINE_SPEC_HELPER(_Header, _Primary<_Type volatile>) \ _DEFINE_SPEC_HELPER(_Header, _Trait<_Type volatile>) \
_DEFINE_SPEC_HELPER(_Header, _Primary<_Type const volatile>) _DEFINE_SPEC_HELPER(_Header, _Trait<_Type const volatile>)
/// @brief primary type categories [4.5.1]. /// @brief primary type categories [4.5.1].
template<typename> template<typename>
......
// 2004-12-11 Paolo Carlini <pcarlini@suse.de> // 2004-12-12 Paolo Carlini <pcarlini@suse.de>
// //
// Copyright (C) 2004 Free Software Foundation, Inc. // Copyright (C) 2004 Free Software Foundation, Inc.
// //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment