Skip to content

Commit 9c4f835

Browse files
committed
Headers: Fix definition of true_type
1 parent d786573 commit 9c4f835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

headers/type_traits

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct integral_constant {
3131
};
3232

3333
typedef integral_constant<bool, false> false_type;
34-
typedef integral_constant<bool, false> false_type;
34+
typedef integral_constant<bool, true> true_type;
3535

3636
// SIMPLIFIED: the actual base type depends on T
3737
// primary type categories

0 commit comments

Comments
 (0)