refactor: remove some dead code

This commit is contained in:
CJ van den Berg 2024-04-08 17:53:10 +02:00
parent ca2e24f15b
commit a7b3c3e1e8
3 changed files with 0 additions and 5 deletions

View file

@ -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
} }

View file

@ -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

View file

@ -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);
}
} }