Skip to content

Commit

Permalink
#1920: CI: NOMERGE: undo hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander authored and thearusable committed Dec 8, 2022
1 parent 9ee840f commit 7a18aff
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/vt/runnable/make_runnable.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
#if !defined INCLUDED_VT_RUNNABLE_MAKE_RUNNABLE_H
#define INCLUDED_VT_RUNNABLE_MAKE_RUNNABLE_H

#include "vt/config.h"
#include "vt/runnable/runnable.h"
#include "vt/context/runnable_context/td.h"
#include "vt/context/runnable_context/trace.h"
Expand Down Expand Up @@ -315,9 +314,7 @@ template <typename U>
RunnableMaker<U> makeRunnable(
MsgSharedPtr<U> const& msg, bool is_threaded, HandlerType handler, NodeType from
) {
vt_debug_print(terse, gen, "makeRunnable 1\n");
auto r = new RunnableNew(msg, is_threaded);
vt_debug_print(terse, gen, "makeRunnable 2\n");
#if vt_check_enabled(trace_enabled)
auto const han_type = HandlerManager::getHandlerRegistryType(handler);
if (han_type == auto_registry::RegistryTypeEnum::RegVrt or
Expand All @@ -326,9 +323,7 @@ RunnableMaker<U> makeRunnable(
r->addContextTrace(msg, handler, from);
}
#endif
vt_debug_print(terse, gen, "makeRunnable 3\n");
r->addContextSetContext(r, from);
vt_debug_print(terse, gen, "makeRunnable 4\n");
return RunnableMaker<U>{r, msg, handler, from};
}

Expand Down

0 comments on commit 7a18aff

Please sign in to comment.