summaryrefslogtreecommitdiff
path: root/community/mysql++/mysql++-fix-size_t.patch
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/mysql++/mysql++-fix-size_t.patch
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/mysql++/mysql++-fix-size_t.patch')
-rw-r--r--community/mysql++/mysql++-fix-size_t.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/community/mysql++/mysql++-fix-size_t.patch b/community/mysql++/mysql++-fix-size_t.patch
deleted file mode 100644
index 908141d5d..000000000
--- a/community/mysql++/mysql++-fix-size_t.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Naur mysql++-3.1.0.old//lib/refcounted.h mysql++-3.1.0/lib/refcounted.h
---- mysql++-3.1.0.old//lib/refcounted.h 2010-06-03 19:59:23.000000000 +0200
-+++ mysql++-3.1.0/lib/refcounted.h 2011-04-23 12:35:39.943366970 +0200
-@@ -101,7 +101,7 @@
- {
- std::auto_ptr<T> exception_guard(counted_);
- if (counted_) {
-- refs_ = new size_t(1);
-+ refs_ = new std::size_t(1);
- }
- exception_guard.release(); // previous new didn't throw
- }
-@@ -255,7 +255,7 @@
- /// We can't keep this as a plain integer because this object
- /// allows itself to be copied. All copies need to share this
- /// reference count, not just the pointer to the counted object.
-- size_t* refs_;
-+ std::size_t* refs_;
- };
-
-