List:Commits« Previous MessageNext Message »
From:Daniel Fischer Date:December 11 2007 11:36am
Subject:bk commit into 6.0 tree (df:1.2752)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of df. When df does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-12-11 11:36:28+01:00, df@stripped +1 -0
  windows portability fix

  extra/yassl/taocrypt/include/type_traits.hpp@stripped, 2007-12-11 11:36:24+01:00, df@stripped +3 -0
    on Windows, we #define bool BOOL, which is the same type as signed int, thus causing a collission

diff -Nrup a/extra/yassl/taocrypt/include/type_traits.hpp b/extra/yassl/taocrypt/include/type_traits.hpp
--- a/extra/yassl/taocrypt/include/type_traits.hpp	2007-03-23 13:41:25 +01:00
+++ b/extra/yassl/taocrypt/include/type_traits.hpp	2007-12-11 11:36:24 +01:00
@@ -48,7 +48,10 @@ class IsFundamentalType {
 
 MK_FUNDAMENTAL_TYPE(void)
 
+#ifndef bool_defined
 MK_FUNDAMENTAL_TYPE(bool)
+#endif
+
 MK_FUNDAMENTAL_TYPE(         char)
 MK_FUNDAMENTAL_TYPE(signed   char)
 MK_FUNDAMENTAL_TYPE(unsigned char)
Thread
bk commit into 6.0 tree (df:1.2752)Daniel Fischer11 Dec