aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-03-01 12:31:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-03-01 12:31:12 +0200
commit2f26329e52cb5b312c8f0ba4da9264afdd78743a (patch)
tree90447823c500839bca9409402b1032856f34a9b8
parent57272f08d87ef76f04878a57d4e37dbc95ca877f (diff)
Include C-headers before C++
-rw-r--r--odb/oracle/connection.cxx4
-rw-r--r--odb/oracle/database.cxx4
-rw-r--r--odb/oracle/error.cxx4
-rw-r--r--odb/oracle/oracle-types.cxx4
-rw-r--r--odb/oracle/statement.cxx4
-rw-r--r--odb/oracle/transaction-impl.cxx4
6 files changed, 12 insertions, 12 deletions
diff --git a/odb/oracle/connection.cxx b/odb/oracle/connection.cxx
index 22bdd69..1f87443 100644
--- a/odb/oracle/connection.cxx
+++ b/odb/oracle/connection.cxx
@@ -2,10 +2,10 @@
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
-#include <string>
-
#include <oci.h>
+#include <string>
+
#include <odb/oracle/database.hxx>
#include <odb/oracle/connection.hxx>
#include <odb/oracle/transaction.hxx>
diff --git a/odb/oracle/database.cxx b/odb/oracle/database.cxx
index 0f22ccc..9a0c4d7 100644
--- a/odb/oracle/database.cxx
+++ b/odb/oracle/database.cxx
@@ -2,10 +2,10 @@
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
-#include <sstream>
-
#include <oci.h>
+#include <sstream>
+
#include <odb/oracle/database.hxx>
#include <odb/oracle/exceptions.hxx>
#include <odb/oracle/error.hxx>
diff --git a/odb/oracle/error.cxx b/odb/oracle/error.cxx
index e156392..e502747 100644
--- a/odb/oracle/error.cxx
+++ b/odb/oracle/error.cxx
@@ -2,10 +2,10 @@
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
-#include <cassert>
-
#include <oci.h>
+#include <cassert>
+
#include <odb/details/buffer.hxx>
#include <odb/oracle/error.hxx>
diff --git a/odb/oracle/oracle-types.cxx b/odb/oracle/oracle-types.cxx
index f1f696c..6a7e803 100644
--- a/odb/oracle/oracle-types.cxx
+++ b/odb/oracle/oracle-types.cxx
@@ -2,10 +2,10 @@
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
-#include <cassert>
-
#include <oci.h>
+#include <cassert>
+
#include <odb/oracle/oracle-types.hxx>
#include <odb/oracle/error.hxx>
diff --git a/odb/oracle/statement.cxx b/odb/oracle/statement.cxx
index 618ed5f..2a08566 100644
--- a/odb/oracle/statement.cxx
+++ b/odb/oracle/statement.cxx
@@ -2,11 +2,11 @@
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
+#include <oci.h>
+
#include <cstring> // std::strlen
#include <cassert>
-#include <oci.h>
-
#include <odb/tracer.hxx>
#include <odb/exceptions.hxx> // object_not_persistent
#include <odb/details/unused.hxx>
diff --git a/odb/oracle/transaction-impl.cxx b/odb/oracle/transaction-impl.cxx
index bf74459..4d42b34 100644
--- a/odb/oracle/transaction-impl.cxx
+++ b/odb/oracle/transaction-impl.cxx
@@ -2,10 +2,10 @@
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
-#include <cassert>
-
#include <oci.h>
+#include <cassert>
+
#include <odb/tracer.hxx>
#include <odb/oracle/database.hxx>