This commit is contained in:
Nathan Gauër 2022-10-26 16:36:08 +00:00
Родитель 7326b967a5
Коммит da215f10c9
3 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -3,4 +3,5 @@ Language: Cpp
BasedOnStyle: Google
DerivePointerAlignment: false
SortIncludes: true
AllowShortIfStatementsOnASingleLine: true
...

Просмотреть файл

@ -188,7 +188,7 @@ function(spvtools_default_compile_options TARGET)
target_compile_options(${TARGET} PRIVATE ${SPIRV_WARNINGS})
if (${COMPILER_IS_LIKE_GNU})
target_compile_options(${TARGET} PRIVATE -std=c++11 -fno-exceptions)
target_compile_options(${TARGET} PRIVATE -std=c++17 -fno-exceptions)
target_compile_options(${TARGET} PRIVATE
-Wall -Wextra -Wno-long-long -Wshadow -Wundef -Wconversion
-Wno-sign-conversion)

Просмотреть файл

@ -52,7 +52,9 @@ void FeatureManager::RemoveExtension(Extension ext) {
}
void FeatureManager::AddCapability(SpvCapability cap) {
if (capabilities_.Contains(cap)) return;
if (capabilities_.Contains(cao))
// toto
return;
capabilities_.Add(cap);