From ab83cb9fcef97945591bd92f62bbcf3a66172260 Mon Sep 17 00:00:00 2001 From: OrenAudeles Date: Tue, 26 Sep 2023 15:38:12 -0500 Subject: [PATCH] Update iexamine_elevator.cpp (#3276) gets rid of `-Werror=pedantic` compile error by removing unnecessary `;` --- src/iexamine_elevator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iexamine_elevator.cpp b/src/iexamine_elevator.cpp index 27889bfe6b9e..fcc6274f9a6f 100644 --- a/src/iexamine_elevator.cpp +++ b/src/iexamine_elevator.cpp @@ -28,7 +28,7 @@ auto move_item( map &here, const tripoint &src, const tripoint &dest ) -> void here.add_item_or_charges( dest, *it ); it = here.i_rem( src, it ); } -}; +} namespace elevator {