summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2010-04-01 10:39:43 +0200
committerVladimir Glazunov <vg@openoffice.org>2010-04-01 10:39:43 +0200
commit8d93a1debc450fcc799be37991ce3f5c5eeda018 (patch)
tree834bcb6e140ff9b4a7db693fb1731da724dac135
parent0a094712b5d9e71575bec057efb700d6126d9ba7 (diff)
#i10000# revert unneeded changeset
Notes
split repo tag: libs-extern_ooo/DEV300_m76
-rw-r--r--mysqlcppconn/mysql-connector-cpp.patch4
1 files changed, 0 insertions, 4 deletions
diff --git a/mysqlcppconn/mysql-connector-cpp.patch b/mysqlcppconn/mysql-connector-cpp.patch
index 736ec8ff3930..b71050435165 100644
--- a/mysqlcppconn/mysql-connector-cpp.patch
+++ b/mysqlcppconn/mysql-connector-cpp.patch
@@ -196,8 +196,6 @@
{
MethodNotImplementedException(const MethodNotImplementedException& e) : SQLException(e.what(), e.sql_state, e.errNo) { }
MethodNotImplementedException(const std::string& reason) : SQLException(reason, "", 0) {}
-@@ -87,7 +87,7 @@
- virtual SQLException* copy() { return new MethodNotImplementedException(*this); }
};
-struct CPPCONN_PUBLIC_FUNC InvalidArgumentException : public SQLException
@@ -205,8 +203,6 @@
{
InvalidArgumentException(const InvalidArgumentException& e) : SQLException(e.what(), e.sql_state, e.errNo) { }
InvalidArgumentException(const std::string& reason) : SQLException(reason, "", 0) {}
-@@ -96,7 +96,7 @@
- virtual SQLException* copy() { return new InvalidArgumentException(*this); }
};
-struct CPPCONN_PUBLIC_FUNC InvalidInstanceException : public SQLException