The clang-tidy --dump-config
command produces something like this:
---
Checks: 'clang-diagnostic-*,clang-analyzer-*'
WarningsAsErrors: ''
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: none
User: [...]
CheckOptions:
- key: [...]
value: [...]
[...]
What is the meaning of the AnalyzeTemporaryDtors
option? What does it change when it is set to true
? All the other options are documented, but I could not find any documentation related to this one, and I could not find any difference changing the value of the option.