Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
One question, LGTM otherwise.
clang/lib/Sema/SemaExprCXX.cpp | ||
---|---|---|
688 | Do you need/want to check returned result? |
clang/lib/Sema/SemaExprCXX.cpp | ||
---|---|---|
688 | We could, and we could return ExprError here, but I thought it would make sense to do the same thing that we do right above, for -fno-exceptions: Continue parsing as normal, since we in fact *can* understand what the user is trying to do. In theory (certainly for try/catch) this will let us emit better errors elsewhere. |
Do you need/want to check returned result?