File tree 2 files changed +3
-3
lines changed
exporters/etw/include/opentelemetry/exporters/etw
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -761,10 +761,10 @@ class Span : public opentelemetry::trace::Span
761
761
const opentelemetry::trace::StartSpanOptions &options,
762
762
Span *parent = nullptr ) noexcept
763
763
: opentelemetry::trace::Span(),
764
+ start_time_ (std::chrono::system_clock::now()),
764
765
owner_(owner),
765
766
parent_(parent),
766
- context_(CreateContext()),
767
- start_time_(std::chrono::system_clock::now())
767
+ context_(CreateContext())
768
768
{
769
769
name_ = name;
770
770
UNREFERENCED_PARAMETER (options);
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ namespace nostd = opentelemetry::nostd;
28
28
Meter::Meter (std::shared_ptr<MeterContext> meter_context,
29
29
std::unique_ptr<sdk::instrumentationlibrary::InstrumentationLibrary>
30
30
instrumentation_library) noexcept
31
- : meter_context_{meter_context}, instrumentation_library_{std::move (instrumentation_library)}
31
+ : instrumentation_library_{std::move (instrumentation_library)}, meter_context_{meter_context }
32
32
{}
33
33
34
34
nostd::shared_ptr<metrics::Counter<long >> Meter::CreateLongCounter (nostd::string_view name,
You can’t perform that action at this time.
0 commit comments