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 2e9c71c commit ab4aecbCopy full SHA for ab4aecb
runtime/backend/backend_init_context.h
@@ -25,8 +25,14 @@ class BackendInitContext final {
25
const char* method_name = nullptr,
26
const NamedDataMap* named_data_map = nullptr)
27
: runtime_allocator_(runtime_allocator),
28
+#ifdef ET_EVENT_TRACER_ENABLED
29
+ event_tracer_(event_tracer),
30
+#else
31
+ event_tracer_(nullptr),
32
+#endif
33
method_name_(method_name),
- named_data_map_(named_data_map) {}
34
+ named_data_map_(named_data_map) {
35
+ }
36
37
/** Get the runtime allocator passed from Method. It's the same runtime
38
* executor used by the standard executor runtime and the life span is the
0 commit comments