From 8587a1b94637dded82396b065e7a07711e11f1e8 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sat, 17 Dec 2022 21:29:33 -0700 Subject: [PATCH] Ensure diagnostic pop occur before end of header guard Maybe we just use pragma once... --- src/SFML/Audio/ALCheck.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SFML/Audio/ALCheck.hpp b/src/SFML/Audio/ALCheck.hpp index 40b65aba0..9395af2dd 100644 --- a/src/SFML/Audio/ALCheck.hpp +++ b/src/SFML/Audio/ALCheck.hpp @@ -92,8 +92,8 @@ ALenum alGetLastErrorImpl(); } // namespace sf -#endif // SFML_ALCHECK_HPP - #if defined(__APPLE__) #pragma GCC diagnostic pop #endif + +#endif // SFML_ALCHECK_HPP