Was ist das nächstgelegene GCC-Äquivalent zu diesem MSVC-Präprozessorcode? #pragma warning( push ) // Save the current warning state. #pragma warning( disable : 4723 ) // C4723: potential divide by 0 // Code which would generate warning 4723. #pragma warning( pop ) // Restore warnings to previous...