|
From: <sv...@op...> - 2026-05-20 16:40:29
|
Author: manx Date: Wed May 20 18:40:16 2026 New Revision: 25339 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=25339 Log: [Var] Run clang-format. Modified: trunk/OpenMPT/src/openmpt/soundbase/SampleConvert.hpp Modified: trunk/OpenMPT/src/openmpt/soundbase/SampleConvert.hpp ============================================================================== --- trunk/OpenMPT/src/openmpt/soundbase/SampleConvert.hpp Wed May 20 18:32:44 2026 (r25338) +++ trunk/OpenMPT/src/openmpt/soundbase/SampleConvert.hpp Wed May 20 18:40:16 2026 (r25339) @@ -42,7 +42,7 @@ // amd64 SSE2 fast call inline + // amd64 SSE4.2 fast inline+fixup inline + // amd64 AVX2 fast inline+fixup inline + -// +// // i386 x87 precise call fixup+call - // i386 SSE2 precise call fixup+call - // amd64 SSE2 precise call call+fixup - @@ -56,7 +56,7 @@ // in which case the canonical semantically correct std::round should be preferred. #if MPT_COMPILER_MSVC -#if (defined(_M_FP_FAST) && (_M_FP_FAST == 1)) +#if defined(_M_FP_FAST) && (_M_FP_FAST == 1) // /fp:fast #if 0 #elif MPT_ARCH_X86 && (defined(MPT_ARCH_X86_FPU) && !defined(MPT_ARCH_X86_SSE2)) @@ -85,7 +85,7 @@ #define MPT_SOUNDBASE_SAMPLECONVERT_HPP_FASTROUND 1 #endif #endif -#endif // MPT_COMPILER_MSVC +#endif // MPT_COMPILER_MSVC #ifndef MPT_SOUNDBASE_SAMPLECONVERT_HPP_FASTROUND #define MPT_SOUNDBASE_SAMPLECONVERT_HPP_FASTROUND 0 |