From 90768ec04ef886e1a442ad96ec65106f0f917511 Mon Sep 17 00:00:00 2001 From: Louis Langholtz Date: Mon, 26 Feb 2024 21:28:37 -0700 Subject: [PATCH] Switches to nested namespace syntax --- Library/source/playrho/d2/Simplex.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Library/source/playrho/d2/Simplex.cpp b/Library/source/playrho/d2/Simplex.cpp index f51341ef1..8524b836f 100644 --- a/Library/source/playrho/d2/Simplex.cpp +++ b/Library/source/playrho/d2/Simplex.cpp @@ -23,8 +23,7 @@ #include -namespace playrho { -namespace d2 { +namespace playrho::d2 { IndexPair3 GetIndexPairs(const SimplexEdges& collection) noexcept { @@ -239,5 +238,4 @@ Real Simplex::CalcMetric(const SimplexEdges& simplexEdges) return Real{0}; } -} // namespace d2 -} // namespace playrho +} // namespace playrho::d2