refactor: remove some dead code
This commit is contained in:
parent
ca2e24f15b
commit
a7b3c3e1e8
3 changed files with 0 additions and 5 deletions
|
@ -32,7 +32,6 @@ void thespian_on_trace(thespian_trace_handler);
|
||||||
void thespian_trace_to_json_file(const char *file_name);
|
void thespian_trace_to_json_file(const char *file_name);
|
||||||
void thespian_trace_to_cbor_file(const char *file_name);
|
void thespian_trace_to_cbor_file(const char *file_name);
|
||||||
void thespian_trace_to_mermaid_file(const char *file_name);
|
void thespian_trace_to_mermaid_file(const char *file_name);
|
||||||
void thespian_trace_to_trace(thespian_trace_channel default_channel);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,5 @@ auto on_trace(trace_handler) -> trace_handler;
|
||||||
auto trace_to_json_file(const std::string &file_name) -> void;
|
auto trace_to_json_file(const std::string &file_name) -> void;
|
||||||
auto trace_to_cbor_file(const std::string &file_name) -> void;
|
auto trace_to_cbor_file(const std::string &file_name) -> void;
|
||||||
auto trace_to_mermaid_file(const std::string &file_name) -> void;
|
auto trace_to_mermaid_file(const std::string &file_name) -> void;
|
||||||
auto trace_to_trace(int default_channel) -> void;
|
|
||||||
|
|
||||||
} // namespace thespian
|
} // namespace thespian
|
||||||
|
|
|
@ -19,7 +19,4 @@ void thespian_trace_to_mermaid_file(const char *file_name) {
|
||||||
thespian::trace_to_mermaid_file(file_name);
|
thespian::trace_to_mermaid_file(file_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void thespian_trace_to_trace(thespian_trace_channel default_channel) {
|
|
||||||
thespian::trace_to_trace(default_channel);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue