moved query parts from intermediates declaration to definition file.

This commit is contained in:
2024-02-27 20:16:59 +01:00
parent 2d9a4f3866
commit b9709d14c2
18 changed files with 153 additions and 70 deletions
+3 -3
View File
@@ -6,9 +6,9 @@
namespace matador::test {
struct coordinate
{
int x;
int y;
int z;
int x{};
int y{};
int z{};
};
}