summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames H. Hill <hilljh82@gmail.com>2010-01-04 16:50:00 +0000
committerJames H. Hill <hilljh82@gmail.com>2010-01-04 16:50:00 +0000
commit965ad5ce0b1d2baaa09605930766d33db8577a1b (patch)
tree5b29c1af0d5405b3accc436118e230cb3f296220
parent621b01c980e80bfc1f7cfa080521ade25ba77ac0 (diff)
downloadATCD-965ad5ce0b1d2baaa09605930766d33db8577a1b.tar.gz
Mon Jan 4 16:49:24 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
-rw-r--r--ADBC/ChangeLog6
-rw-r--r--ADBC/adbc/SQLite/Parameter.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ADBC/ChangeLog b/ADBC/ChangeLog
index cce8a5ecfbb..707b767e81d 100644
--- a/ADBC/ChangeLog
+++ b/ADBC/ChangeLog
@@ -1,3 +1,9 @@
+Mon Jan 4 16:49:24 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
+
+ * adbc/SQLite/Parameter.cpp:
+
+ Fixed build errors on MacOS X platforms.
+
Mon Jan 4 16:47:56 UTC 2010 James H. Hill <hillj at cs dot iupui dot edu>
* adbc/ODBC/ODBC.h:
diff --git a/ADBC/adbc/SQLite/Parameter.cpp b/ADBC/adbc/SQLite/Parameter.cpp
index 049708b0dc9..2644f7c3aac 100644
--- a/ADBC/adbc/SQLite/Parameter.cpp
+++ b/ADBC/adbc/SQLite/Parameter.cpp
@@ -84,7 +84,7 @@ void Parameter::bind (::ADBC::Date_Time * date_time)
{
// Cast the object its concrete type.
ADBC::SQLite::Date_Time * dt =
- dynamic_cast <::ADBC::SQLite::Date_Time *> (date_time);
+ dynamic_cast < ::ADBC::SQLite::Date_Time * > (date_time);
if (0 != dt)
this->bind (dt);