output: allow throwing any exception

This commit is contained in:
Max Kellermann
2019-07-03 22:10:26 +02:00
parent 510e6841a0
commit 412b04be58
12 changed files with 28 additions and 28 deletions
+3 -3
View File
@@ -83,7 +83,7 @@ struct JackOutput final : AudioOutput {
* Connect the JACK client and performs some basic setup
* (e.g. register callbacks).
*
* Throws #std::runtime_error on error.
* Throws on error.
*/
void Connect();
@@ -97,7 +97,7 @@ struct JackOutput final : AudioOutput {
}
/**
* Throws #std::runtime_error on error.
* Throws on error.
*/
void Start();
void Stop() noexcept;
@@ -141,7 +141,7 @@ struct JackOutput final : AudioOutput {
static constexpr Domain jack_output_domain("jack_output");
/**
* Throws #std::runtime_error on error.
* Throws on error.
*/
static unsigned
parse_port_list(const char *source, std::string dest[])