summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
diff options
context:
space:
mode:
authorBaranov Victor <70346889+vbvictor@users.noreply.github.com>2025-02-20 00:47:17 +0300
committerGitHub <noreply@github.com>2025-02-20 05:47:17 +0800
commit8363b0a6bab041b54316962e3e8948098148baeb (patch)
treed4e5de158280096ce84e6c5032bb4af127e5d117 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
parent5f8b2568219d5e516928aed67f13b59de8ccee17 (diff)
[clang-tidy] add AllowedTypes option to misc-const-correctness (#122951)
Add option `AllowedTypes` which allow users to specify types they want to exclude from const-correctness check. Small real-world example: ```cpp #include <mutex> int main() { std::mutex m; std::lock_guard<std::mutex> l(m); // we want to ignore it since std::lock_guard is already immutable. } ``` Closes issue https://github.com/llvm/llvm-project/issues/122592
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
0 files changed, 0 insertions, 0 deletions