Compare commits

..

1 Commits

Author SHA1 Message Date
Shaun Reed f0b8419517 Clang tidy 2022-11-20 10:27:12 -05:00
2 changed files with 2 additions and 4 deletions

View File

@ -37,8 +37,8 @@ jobs:
tidy-checks: '' tidy-checks: ''
# Check the entire repo for source files to tidy # Check the entire repo for source files to tidy
files-changed-only: false files-changed-only: false
# Ignore qtk build and external assimp directories # Ignore the build dirctory
ignore: '.github|build|extern/assimp/assimp' ignore: '.github|build'
# Point to compile_commands.json produced by build # Point to compile_commands.json produced by build
database: 'build' database: 'build'
# Use thread comments as feedback # Use thread comments as feedback

View File

@ -49,8 +49,6 @@ QOpenGLTexture * OpenGLTextureFactory::initCubeMap(const char * tile) {
QOpenGLTexture * OpenGLTextureFactory::initCubeMap( QOpenGLTexture * OpenGLTextureFactory::initCubeMap(
const char * right, const char * top, const char * front, const char * left, const char * right, const char * top, const char * front, const char * left,
const char * bottom, const char * back) { const char * bottom, const char * back) {
if (false)
return
return initCubeMap( return initCubeMap(
QImage(right), QImage(top), QImage(front), QImage(left), QImage(bottom), QImage(right), QImage(top), QImage(front), QImage(left), QImage(bottom),
QImage(back)); QImage(back));