Date: Wednesday, May 24, 2006 @ 08:22:05
  Author: csaba
    Path: /cvsroot/carob/carob/include

Modified: BigDecimal.hpp (1.23 -> 1.24) DriverSocket.hpp (1.14 -> 1.15)
          ResultSetMetaData.hpp (1.7 -> 1.8)

Fixes for gcc 4.1 compilation errors. See CAROB-93


-----------------------+
 BigDecimal.hpp        |    2 +-
 DriverSocket.hpp      |    2 +-
 ResultSetMetaData.hpp |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


Index: carob/include/BigDecimal.hpp
diff -u carob/include/BigDecimal.hpp:1.23 carob/include/BigDecimal.hpp:1.24
--- carob/include/BigDecimal.hpp:1.23   Tue May  2 12:34:59 2006
+++ carob/include/BigDecimal.hpp        Wed May 24 08:22:05 2006
@@ -127,7 +127,7 @@
    * @param input socket from which to deserializer Big Decimal
    * @throws SocketIOException if an error occurs on the stream
    */
-  BigDecimal::BigDecimal(const DriverSocket& input)
+  BigDecimal(const DriverSocket& input)
       throw (SocketIOException, UnexpectedException);
   /**
    * Frees intVal if applicable
Index: carob/include/DriverSocket.hpp
diff -u carob/include/DriverSocket.hpp:1.14 carob/include/DriverSocket.hpp:1.15
--- carob/include/DriverSocket.hpp:1.14 Fri Feb 24 18:26:25 2006
+++ carob/include/DriverSocket.hpp      Wed May 24 08:22:05 2006
@@ -56,7 +56,7 @@
    * Convenience method to send C-style strings. Creates a wstring and sends 
it.
    * Reminder: every C-style string can be a wstring; the opposite is not true.
    */
-  const DriverSocket& DriverSocket::operator <<(const wchar_t *) const
+  const DriverSocket& operator <<(const wchar_t *) const
     throw (SocketIOException, UnexpectedException);
     
   /**
Index: carob/include/ResultSetMetaData.hpp
diff -u carob/include/ResultSetMetaData.hpp:1.7 
carob/include/ResultSetMetaData.hpp:1.8
--- carob/include/ResultSetMetaData.hpp:1.7     Tue Jan 24 19:37:27 2006
+++ carob/include/ResultSetMetaData.hpp Wed May 24 08:22:05 2006
@@ -284,7 +284,7 @@
    * ResultSet's <code>nbOfColumns</code> and throws and exception if not.
    * @exception DriverException if a the given column number is out of range
    */
-  void ResultSetMetaData::checkColumnIndex(int column) throw (DriverException,
+  void                  checkColumnIndex(int column) throw (DriverException,
     UnexpectedException);
 };
 

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

Reply via email to