Skip to content

Commit 57f9850

Browse files
committed
remove unrelated formatting
1 parent e8cf91b commit 57f9850

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/lib/AST/Interp/ByteCodeExprGen.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ByteCodeExprGen : public ConstStmtVisitor<ByteCodeExprGen<Emitter>, bool>,
5454
public:
5555
/// Initializes the compiler and the backend emitter.
5656
template <typename... Tys>
57-
ByteCodeExprGen(Context &Ctx, Program &P, Tys &&...Args)
57+
ByteCodeExprGen(Context &Ctx, Program &P, Tys &&... Args)
5858
: Emitter(Ctx, P, Args...), Ctx(Ctx), P(P) {}
5959

6060
// Expression visitors - result returned on interp stack.
@@ -241,7 +241,8 @@ class ByteCodeExprGen : public ConstStmtVisitor<ByteCodeExprGen<Emitter>, bool>,
241241
llvm::function_ref<bool(PrimType)> Direct,
242242
llvm::function_ref<bool(PrimType)> Indirect);
243243
bool dereferenceParam(const Expr *LV, PrimType T, const ParmVarDecl *PD,
244-
DerefKind AK, llvm::function_ref<bool(PrimType)> Direct,
244+
DerefKind AK,
245+
llvm::function_ref<bool(PrimType)> Direct,
245246
llvm::function_ref<bool(PrimType)> Indirect);
246247
bool dereferenceVar(const Expr *LV, PrimType T, const VarDecl *PD,
247248
DerefKind AK, llvm::function_ref<bool(PrimType)> Direct,

0 commit comments

Comments
 (0)