moved query parts from intermediates declaration to definition file.
This commit is contained in:
@@ -6,9 +6,9 @@
|
||||
namespace matador::test {
|
||||
struct coordinate
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
int z;
|
||||
int x{};
|
||||
int y{};
|
||||
int z{};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user