From 746face82943a833a1d5274d53173d2edb0de97c Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Mon, 14 Jul 2025 10:37:35 -0400 Subject: [PATCH] Formatting change --- main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; }