Deduplicate branches and adjust comment [NFC]
authorAaron Puchert <aaronpuchert@alice-dsl.net>
Sat, 27 Mar 2021 21:50:22 +0000 (22:50 +0100)
committerAaron Puchert <aaronpuchert@alice-dsl.net>
Sat, 27 Mar 2021 22:08:43 +0000 (23:08 +0100)
commitc61ae6e6d597984e6ff7d012dce4dfd59c05d792
tree94afc998cd5a92a9f6c965c31a2c57afbe5b4a22
parentd2855eba814f6da9a33646ee1076d6f73289c7a4
Deduplicate branches and adjust comment [NFC]

Currently we want to allow calling non-const methods even when only a
shared lock is held, because -Wthread-safety-reference is already quite
sensitive and not all code is const-correct. Even if it is, this might
require users to add std::as_const around the implicit object argument.

See D52395 for a discussion.

Fixes PR46963.
clang/lib/Analysis/ThreadSafety.cpp