/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Data/UnitTests/FoundationTest/Preprocessor/InvalidExpandSelf1.txt
11 строк
304 B
Jan Krassnigg
Added .gitattributes file to enforce consistent line-endings (#872)
16 фев 2023, 20:57
Не верифицирован
16 фев 2023, 20:57
565458b
Код
Авторство
О чём код?
#define SOME_DEFINE (SOME_DEFINE*7) // the following will rightly throw an error, because it is expanded to //#if (SOME_DEFINE*7)(2) != 0 //which is interpreted as //#if (0*7)(2) != 0 // therefore the parenthesis of (2) will be an invalid part of the expression #if SOME_DEFINE(2) != 0 false1 #endif