diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-08 15:17:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-08 15:17:49 +0200 |
commit | c93c64934ab5d5f05201909d674b97ecf7ddc1ed (patch) | |
tree | 117afe55d6bfc25dad527504024297f82dd32c62 | |
parent | f066315aa4e0493554a45b8294c366e4a1c9bca6 (diff) |
Initialize value to pacify VC12
-rw-r--r-- | odb/oracle/statement.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/oracle/statement.cxx b/odb/oracle/statement.cxx index bdbbc8a..d09b6a1 100644 --- a/odb/oracle/statement.cxx +++ b/odb/oracle/statement.cxx @@ -399,7 +399,7 @@ namespace odb i++; // Column index is 1-based. - void* value; + void* value (0); sb4 capacity; ub2* size (0); bool callback (b->callback != 0); |