[PATCH] D57100: [clang-tidy] refactor bugprone-exception-escape analysis into class
Roman Lebedev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 24 04:24:33 PST 2019
lebedev.ri added inline comments.
================
Comment at: clang-tidy/bugprone/ExceptionEscapeCheck.cpp:35
+ std::vector<std::string> FunctionsThatShouldNotThrowVec =
+ utils::options::parseStringList(RawFunctionsThatShouldNotThrow);
FunctionsThatShouldNotThrow.insert(FunctionsThatShouldNotThrowVec.begin(),
----------------
JonasToth wrote:
> lebedev.ri wrote:
> > JonasToth wrote:
> > > lebedev.ri wrote:
> > > > Does it also accept ',' delimitter?
> > > > If not, i'm not sure how good of an idea it is to break existing configs..
> > > No it doesn't. It is a breaking change but at the same time it is inconsistent and duplicated functionality.
> > > Should be mentioned in release notes, that for sure.
> > The thing is, if said list was set (as in user-specified to non-empty), it will be impossible
> > to use that same .clang-tidy config with clang-tidy <=8 and trunk.
> > I'm personally not affected, but if i was, i wouldn't think this is a great idea..
> >
> > Can you at least make the breakage less crippling by also renaming the config field?
> Oh thats true, i didnt consider the config files. Maybe I just leave it as is.
I understand the cleanup and the inconsistency and duplicated functionality,
but maybe regardless of the fix, it should be addressed in a separate review?
Repository:
rCTE Clang Tools Extra
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57100/new/
https://reviews.llvm.org/D57100
More information about the cfe-commits
mailing list