aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/container-statements.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-29 09:05:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-29 09:05:52 +0200
commitc56597d22eb4ab16ea482b92b8a5ba0f079f890f (patch)
tree6b0b2dc25e6d5380fef3c2036d78e7022b4c06b2 /odb/oracle/container-statements.hxx
parentb12e076d8232dd2c757fa41685205f9c610114fc (diff)
Remove unused indicator arrays from view/container statements
Diffstat (limited to 'odb/oracle/container-statements.hxx')
-rw-r--r--odb/oracle/container-statements.hxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/odb/oracle/container-statements.hxx b/odb/oracle/container-statements.hxx
index bc929a4..61febef 100644
--- a/odb/oracle/container-statements.hxx
+++ b/odb/oracle/container-statements.hxx
@@ -15,7 +15,6 @@
#include <odb/oracle/version.hxx>
#include <odb/oracle/oracle-types.hxx>
-#include <odb/oracle/oracle-fwd.hxx> // sb2
#include <odb/oracle/statement.hxx>
#include <odb/oracle/details/export.hxx>
@@ -114,12 +113,6 @@ namespace odb
return cond_image_binding_;
}
- sb2*
- cond_image_indicator ()
- {
- return cond_image_indicator_;
- }
-
// Data image.
//
data_image_type&
@@ -158,12 +151,6 @@ namespace odb
return data_image_binding_;
}
- sb2*
- data_image_indicator ()
- {
- return data_image_indicator_;
- }
-
//
// Statements.
//
@@ -223,14 +210,12 @@ namespace odb
std::size_t cond_id_binding_version_;
binding cond_image_binding_;
bind* cond_image_bind_;
- sb2* cond_image_indicator_;
data_image_type data_image_;
std::size_t data_image_version_;
std::size_t data_id_binding_version_;
binding data_image_binding_;
bind* data_image_bind_;
- sb2* data_image_indicator_;
const char* insert_one_text_;
const char* select_all_text_;
@@ -259,10 +244,7 @@ namespace odb
private:
bind cond_image_bind_array_[traits::cond_column_count];
- sb2 cond_image_indicator_array_[traits::cond_column_count];
-
bind data_image_bind_array_[traits::data_column_count];
- sb2 data_image_indicator_array_[traits::data_column_count];
};
}
}