I have a header file including a definition of class, which also includes a lot of small member functions. By default it seems the compiler inlines those functions even for debug build, which makes breakpoints grayed out on those functions. It's also bloating the final code size for release build. Is there any compiler option to stop this default inlining behavior?