diff options
Diffstat (limited to 'odb-tests/pgsql/custom/test.hxx')
-rw-r--r-- | odb-tests/pgsql/custom/test.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb-tests/pgsql/custom/test.hxx b/odb-tests/pgsql/custom/test.hxx index ec3d496..754acd2 100644 --- a/odb-tests/pgsql/custom/test.hxx +++ b/odb-tests/pgsql/custom/test.hxx @@ -20,8 +20,8 @@ struct point point () {} point (double x_, double y_): x (x_), y (y_) {} - double x; - double y; + double x = 0; + double y = 0; }; inline bool |