From 1bdc9ca87719dd1a702307f4a55fae495ea48fb0 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 19 Aug 2020 23:32:27 -0500 Subject: [PATCH] Removing blank line. --- include/openmc/position.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/openmc/position.h b/include/openmc/position.h index aaf63d0003..b27a0f10c3 100644 --- a/include/openmc/position.h +++ b/include/openmc/position.h @@ -66,7 +66,6 @@ struct Position { inline Position reflect(Position n) { const double projection = n.dot(*this); const double magnitude = n.dot(n); - n *= (2.0 * projection / magnitude); return *this -= n; }