Date: Thursday, February 8, 2007 @ 17:59:23
  Author: marc
    Path: /cvsroot/carob/carob/src

Modified: SQLDataSerialization.cpp (1.42 -> 1.43)

Fixed comment


--------------------------+
 SQLDataSerialization.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: carob/src/SQLDataSerialization.cpp
diff -u carob/src/SQLDataSerialization.cpp:1.42 
carob/src/SQLDataSerialization.cpp:1.43
--- carob/src/SQLDataSerialization.cpp:1.42     Wed Feb  7 11:03:08 2007
+++ carob/src/SQLDataSerialization.cpp  Thu Feb  8 17:59:23 2007
@@ -442,7 +442,7 @@
     using std::string;
     // then check if we have an classical MSB-float arch
     // (sign, exponent, fraction)
-    // UNTESTED
+    // tested on PowerPC G4
     const char e125f_msbf[] = { 1, 0, 0, 2 };
     const char e1007d_msbf[] = { 1, 0, 0, 0, 0, 0, 0, 2 };
     
@@ -451,7 +451,7 @@
         return false;
 
     // else check if we have an classical LSB-float arch
-    // TESTED (on IA32)
+    // tested on IA32
     const char e125f_lsbf[] = { 2, 0, 0, 1 };
     const char e1007d_lsbf[] = { 2, 0, 0, 0, 0, 0, 0, 1 };
     
@@ -475,7 +475,7 @@
     using std::string;
 
     // then check if we have an classical MSB arch
-    // UNTESTED
+    // tested on PowerPC G4
     const char i_msbf[] = { 1, 0, 0, 2 };
     const char l_msbf[] = { 1, 0, 0, 0, 0, 0, 0, 2 };
 
@@ -484,7 +484,7 @@
         return false;
 
     // else check if we have an classical LSB arch
-    // TESTED (on IA32)
+    // tested on IA32
     const char i_lsbf[] = { 2, 0, 0, 1 };
     const char l_lsbf[] = { 2, 0, 0, 0, 0, 0, 0, 1 };
 

_______________________________________________
Carob-commits mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to