diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-05 13:22:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-08 16:03:17 +0200 |
commit | 487bd012de7efc7237581b4a7aeac7fd817138fb (patch) | |
tree | ff412dc4ca19775448fe80d67f340e38fd3421bf | |
parent | cad77e08b1d3e2e55fd9aec12b1643cd7b4a0eca (diff) |
Stylistic fixes
-rw-r--r-- | odb/oracle/statement.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/oracle/statement.cxx b/odb/oracle/statement.cxx index 0dab835..cb204d5 100644 --- a/odb/oracle/statement.cxx +++ b/odb/oracle/statement.cxx @@ -81,7 +81,7 @@ namespace odb bind& b (*static_cast<bind*> (context)); details::buffer* lob_buffer ( - reinterpret_cast<details::buffer*>(b.buffer)); + reinterpret_cast<details::buffer*> (b.buffer)); // Only call the callback if the parameter is not NULL. // @@ -681,7 +681,7 @@ namespace odb void statement:: stream_result (bind* b, size_t c) { - OCIError* err (conn_.error_handle()); + OCIError* err (conn_.error_handle ()); for (size_t i (0); i < c; ++i, ++b) { @@ -834,7 +834,7 @@ namespace odb #ifndef NDEBUG ub4 n (0); - r = OCIAttrGet(stmt_, OCI_HTYPE_STMT, &n, 0, OCI_ATTR_PARAM_COUNT, err); + r = OCIAttrGet (stmt_, OCI_HTYPE_STMT, &n, 0, OCI_ATTR_PARAM_COUNT, err); if (r == OCI_ERROR || r == OCI_INVALID_HANDLE) translate_error (err, r); |