what code is it?
#define FORCENOINLINE __attribute__((noinline)) /* Force code to NOT be inline */
In brief, this code not use inline in c++ code and UE4 use it as FORCENOINLINE macro,
FORCENOINLINE construct() , you know what it means?, that's right
How can I tell gcc not to inline a function?
78 24 | |||||
|
94 | You want the
Use it like this:
| ||||||||||||||||||||
|
반응형
'프로그래밍(Programming) > c++, 11, 14 , 17, 20' 카테고리의 다른 글
레지스터와 연산 처리과정 EAX, EDX, ECX, EBX, ESI, EDI, ESI, EDI (0) | 2018.02.13 |
---|---|
__declspec(align(n)) 으로 바이트 정렬하기 (0) | 2018.02.10 |
상속의 복사생성자 (0) | 2016.11.06 |
클로져 객체의 복사 생성자와 소멸자 (0) | 2016.07.18 |
shared_ptr 순환 참조의 문제 weak_ptr (0) | 2016.07.17 |