Skip to content

Commit

Permalink
comply to noexcept requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianlin-Zhao committed Aug 1, 2020
1 parent c0ac15e commit 36b3241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/include/opentelemetry/trace/trace_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class TraceState
static constexpr int kValueMaxSize = 256;
static constexpr int kMaxKeyValuePairs = 32;
// An empty TraceState.
TraceState() noexcept = default;
// TraceState() noexcept = default;
TraceState(TraceState &&trace_state) {
tmp_map = trace_state.tmp_map;
}
Expand Down

0 comments on commit 36b3241

Please sign in to comment.