Skip to content

Commit 7dd826d

Browse files
Fix warning treated as error.
1 parent a48085c commit 7dd826d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classdesc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ namespace classdesc
428428
///@}
429429

430430
/// transfer the constness property of T to U
431-
template <class T, class U, bool c=Or<is_const<T>,is_const<U>>::value> struct transfer_const;
431+
template <class T, class U, bool c=Or<is_const<T>,is_const<U> >::value> struct transfer_const;
432432
template <class T, class U> struct transfer_const<T,U,true>
433433
{
434434
typedef typename add_const<U>::type type;

0 commit comments

Comments
 (0)