Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Aug 27, 2022
1 parent 2f44b3b commit e794949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xtd.core/src/xtd/diagnostics/trace_listener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ void trace_listener::name(const ustring& name) {
name_ = name;
}

const trace_options& trace_listener::trace_output_options() const {
trace_options trace_listener::trace_output_options() const {
return trace_output_options_;
}

void trace_listener::trace_output_options(const trace_options& trace_output_options) {
void trace_listener::trace_output_options(trace_options trace_output_options) {
trace_output_options_ = trace_output_options;
}

Expand Down

0 comments on commit e794949

Please sign in to comment.