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{};
};
}
+2 -2
View File
@@ -13,10 +13,10 @@ enum class Color : uint8_t {
struct location
{
unsigned long id;
unsigned long id{};
std::string name;
coordinate coord;
Color color;
Color color{Color::Green};
template < class Operator >
void process(Operator &op)