Skip to content

ParametersBase, EventPrimitives, Tidy(1)

Running the following clang-tidy checks (not all returned an issue ....)

checks=-*,
checks+=bugprone-inaccurate-erase,
checks+=bugprone-parent-virtual-call,
checks+=bugprone-unused-raii,
checks+=bugprone-virtual-near-miss
${HOME}/run-clang-tidy.py -header-filter='.*' -checks=$checks -fix

checks=-*,
checks+=misc-redundant-expression,
checks+=misc-uniqueptr-reset-release,
checks+=misc-unused-alias-decls,
checks+=misc-unused-parameters
${HOME}/run-clang-tidy.py -header-filter='.*' -checks=$checks -fix

checks=-*,
checks+=modernize-replace-auto-ptr,
checks+=modernize-use-nullptr,
checks+=modernize-make-unique,
checks+=modernize-use-emplace,
checks+=modernize-use-equals-delete
${HOME}/run-clang-tidy.py -header-filter='.*' -checks=$checks -fix

checks=-*,
checks+=performance-unnecessary-copy-initialization,
checks+=performance-for-range-copy,
checks+=performance-inefficient-vector-operation,
checks+=performance-inefficient-algorithm,
checks+=performance-move-const-arg
${HOME}/run-clang-tidy.py -header-filter='.*' -checks=$checks -fix

checks=-*,
checks+=readability-const-return-type,
checks+=readability-container-size-empty,
checks+=readability-isolate-declaration,
checks+=readability-redundant-control-flow,
checks+=readability-redundant-smartptr-get,
checks+=readability-simplify-boolean-expr,
checks+=readability-uniqueptr-delete-release
${HOME}/run-clang-tidy.py -header-filter='.*' -checks=$checks -fix

Merge request reports