genrule( name = 'unoil-src', cmd = ' && '.join([ 'cd $TMP', 'echo "FAKE SOURCE ARCHIVE" > README', 'zip -qr $OUT *', ]), out = 'unoil-src.jar', visibility = ['PUBLIC'], ) genrule( name = 'unoil-javadoc', cmd = ' && '.join([ 'cd $TMP', 'echo "FAKE JAVADOC ARCHIVE" > README', 'zip -qr $OUT *', ]), out = 'unoil-javadoc.jar', visibility = ['PUBLIC'], )
summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/redundantcast.cxx
AgeCommit message (Expand)Author
2024-11-19Adapt to LLVM 20 trunk QualType::isAtLeastAsQualifiedAs changeStephan Bergmann
2024-08-05loplugin:redundantcast fix crashNoel Grandin
2023-11-06Adapt to various Clang 18 trunk enum reworkStephan Bergmann
2023-07-21loplugin:redundantcast small improvementNoel Grandin
2022-11-23Fix loplugin:redundantcast check for same-type dynamic_castStephan Bergmann
2022-10-17loplugin:redundantcast look for redundant dynamic_cast<T&>Noel Grandin
2022-09-21Extend loplugin:redundantcast to some suspicious reinterpret_castStephan Bergmann
2022-07-14Adapt to Clang 15 trunk increase in ElabortatedType sugarStephan Bergmann
2022-05-18Extend loplugin:redundantcast to trivial reinterpret_cast from T to itselfStephan Bergmann
2022-02-17Bump compiler plugins Clang baseline to 12.0.1Stephan Bergmann