summaryrefslogtreecommitdiff
path: root/odb-tests/common
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-04-23 06:12:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2024-04-23 06:12:20 +0200
commit1e653e1b10f19454cd2dac621fd5bb1f19a7aeac (patch)
treefebff04110a4f5b03275915ce61fe09163c88f4f /odb-tests/common
parent45e78bf8e308cd5f01ba886dad2a756c3ef90370 (diff)
Suppress bunch of unused/uninitialized warnings
Diffstat (limited to 'odb-tests/common')
-rw-r--r--odb-tests/common/wrapper/test.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb-tests/common/wrapper/test.hxx b/odb-tests/common/wrapper/test.hxx
index 3ae4151..91f5758 100644
--- a/odb-tests/common/wrapper/test.hxx
+++ b/odb-tests/common/wrapper/test.hxx
@@ -60,7 +60,7 @@ namespace test1
#pragma db value
struct comp1
{
- comp1 () {}
+ comp1 (): num (0) {}
comp1 (const std::string& s, int n): str (s), num (n) {}
std::string str;