aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odb/pgsql/binding.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/odb/pgsql/binding.hxx b/odb/pgsql/binding.hxx
index d6c61a8..50c655e 100644
--- a/odb/pgsql/binding.hxx
+++ b/odb/pgsql/binding.hxx
@@ -27,13 +27,14 @@ namespace odb
const int* l,
const int* f,
std::size_t n)
- : values (v), lengths (l), formats (f), count (n)
+ : values (v), lengths (l), formats (f), version (0), count (n)
{
}
const char* const* values;
const int* lengths;
const int* formats;
+ std::size_t version;
std::size_t count;
private: