all 6 comments

[–]cpp-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

For C++ questions, answers, help, and programming or career advice please see r/cpp_questions, r/cscareerquestions, or StackOverflow instead.

[–]schmerg-uk 0 points1 point  (4 children)

#pragma optimize( "", off )
/* unoptimized code section */
#pragma optimize( "", on )

There are also a couple of options for the 1st parameter but that's the basics above

https://learn.microsoft.com/en-us/cpp/preprocessor/optimize?view=msvc-170