We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211f7dd commit 2744d9bCopy full SHA for 2744d9b
clang/lib/AST/Interp/ByteCodeExprGen.cpp
@@ -222,13 +222,8 @@ bool ByteCodeExprGen<Emitter>::VisitFloatingLiteral(const FloatingLiteral *E) {
222
}
223
224
template <class Emitter>
225
-bool ByteCodeExprGen<Emitter>::VisitParenExpr(const ParenExpr *PE) {
226
- const Expr *SubExpr = PE->getSubExpr();
227
-
228
- if (DiscardResult)
229
- return this->discard(SubExpr);
230
231
- return this->visit(SubExpr);
+bool ByteCodeExprGen<Emitter>::VisitParenExpr(const ParenExpr *E) {
+ return this->delegate(E->getSubExpr());
232
233
234
0 commit comments