From 0650e4f164fea3decff255d06858d9e83931c718 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Tue, 2 Nov 2004 23:30:52 +0000 Subject: [PATCH] fix www.boost.org links [SVN r26093] --- enable_if.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enable_if.html b/enable_if.html index 7a00225..2b6ac0a 100644 --- a/enable_if.html +++ b/enable_if.html @@ -128,7 +128,7 @@ When valid, enable_if_c<B, T>::type equals T. The enable_if_c template can thus be used for controlling when functions are considered for overload resolution and when they are not. For example, the following function is defined for all arithmetic types (according to the -classification of the Boost type_traits library): +classification of the Boost type_traits library):
template <class T>
 typename enable_if_c<boost::is_arithmetic<T>::value, T>::type 
 foo(T t) { return t; }