Define ECL_DONT_INLINE
Defined in File macros.hpp
Define Documentation
-
ECL_DONT_INLINE
Prevents a function from being inlined.
The following macro prevents functions from being inlined by both gnu or msvc compilers.
ELC_DONT_INLINE void f() { std::cout << "Dude" << std::endl; }