diff --git a/main.cpp b/main.cpp index 26990c6..1fcf9ba 100644 --- a/main.cpp +++ b/main.cpp @@ -3,8 +3,7 @@ #include int main() { - Particle test = { - {0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, 10}; + Particle test = {{0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, 10}; std::cout << test.pos.x << " " << test.pos.y << " " << test.pos.z; return 0; }