Skip to content

Commit a27da32

Browse files
committed
clang tidy reviews
1 parent 5d6c208 commit a27da32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/include/clang/Interpreter/Interpreter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class Interpreter {
130130
virtual ~Interpreter();
131131
static llvm::Expected<std::unique_ptr<Interpreter>>
132132
create(std::unique_ptr<CompilerInstance> CI,
133-
std::unique_ptr<CompilerInstance> DeviceCI = nullptr);
133+
std::unique_ptr<CompilerInstance> DeviceCI = nullptr);
134134
static llvm::Expected<std::unique_ptr<Interpreter>>
135135
createWithCUDA(std::unique_ptr<CompilerInstance> CI,
136136
std::unique_ptr<CompilerInstance> DCI);

clang/lib/Interpreter/Interpreter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ Interpreter::create(std::unique_ptr<CompilerInstance> CI,
473473
// if (DeviceErr)
474474
// return std::move(DeviceErr);
475475

476-
//DeviceCI->ExecuteAction(*DeviceAct);
476+
// DeviceCI->ExecuteAction(*DeviceAct);
477477
DeviceCI->ExecuteAction(*Interp->Act);
478478

479479
llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> IMVFS =

0 commit comments

Comments
 (0)