mirror of https://github.com/FreeRDP/FreeRDP
[clang-tidy] disable performance-avoid-endl
this warning is not required in our case as we do not have code that requires high performance utilizing std::endl (output to std::cout or std::cerr)
This commit is contained in:
parent
b7553d5f41
commit
21d0088b95
|
@ -62,7 +62,8 @@ Checks: >
|
|||
-readability-magic-numbers,
|
||||
-readability-qualified-auto,
|
||||
-readability-uppercase-literal-suffix,
|
||||
-performance-no-int-to-ptr
|
||||
-performance-no-int-to-ptr,
|
||||
-performance-avoid-endl
|
||||
WarningsAsErrors: ''
|
||||
HeaderFilterRegex: ''
|
||||
FormatStyle: file
|
||||
|
|
Loading…
Reference in New Issue