[ORC] Fix an 80 column violation.
authorLang Hames <lhames@gmail.com>
Mon, 11 Oct 2021 16:53:05 +0000 (09:53 -0700)
committerLang Hames <lhames@gmail.com>
Mon, 11 Oct 2021 16:53:16 +0000 (09:53 -0700)
llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h

index 46f33813be517b814470a083d155fbea316cecc9..513d3cfc18e64be66c15ce78a788846ce8a661c7 100644 (file)
@@ -37,8 +37,8 @@ public:
   Create(std::unique_ptr<TaskDispatcher> D,
          TransportTCtorArgTs &&...TransportTCtorArgs) {
     std::unique_ptr<SimpleRemoteEPC> SREPC(
-                                           new SimpleRemoteEPC(std::make_shared<SymbolStringPool>(),
-                                                               std::move(D)));
+        new SimpleRemoteEPC(std::make_shared<SymbolStringPool>(),
+                            std::move(D)));
     auto T = TransportT::Create(
         *SREPC, std::forward<TransportTCtorArgTs>(TransportTCtorArgs)...);
     if (!T)