This commit is contained in:
Nathan Gauër 2022-10-26 16:36:08 +00:00
parent 7326b967a5
commit da215f10c9
3 changed files with 5 additions and 2 deletions

View File

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

View File

@ -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)

View File

@ -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);