diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-05-31 16:33:01 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-05-31 16:33:01 +0200 |
commit | d6efc3aa83455bc7dfa9740ed573b0385348e16a (patch) | |
tree | da6f7a99ab49daadad395ca6e7f52fe73d87bd89 | |
parent | 7f50d4e53837f5ac87f3c6a0c7cc6eea11c6e89b (diff) |
Remove version data member from native_binding
-rw-r--r-- | odb/pgsql/binding.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/odb/pgsql/binding.hxx b/odb/pgsql/binding.hxx index 3fb9153..700de00 100644 --- a/odb/pgsql/binding.hxx +++ b/odb/pgsql/binding.hxx @@ -27,7 +27,7 @@ namespace odb int* l, int* f, std::size_t n) - : values (v), lengths (l), formats (f), count (n), version (0) + : values (v), lengths (l), formats (f), count (n) { } @@ -35,7 +35,6 @@ namespace odb int* lengths; int* formats; std::size_t count; - std::size_t version; private: native_binding (const native_binding&); |