From 3767aae7a174e7558549ad2a40b9ef4702d927cc Mon Sep 17 00:00:00 2001 From: jeffqjiangNew <142832361+jeffqjiangNew@users.noreply.github.com> Date: Wed, 13 Sep 2023 11:16:28 -0400 Subject: [PATCH] Fix a link error when building the sample apps. (#5) --- src/dec_handle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dec_handle.h b/src/dec_handle.h index fc6ca7615e..150c1cb1cf 100644 --- a/src/dec_handle.h +++ b/src/dec_handle.h @@ -28,7 +28,7 @@ THE SOFTWARE. struct DecHandle { - explicit DecHandle(); //constructor + explicit DecHandle() {}; //constructor ~DecHandle() { clear_errors(); } std::shared_ptr roc_decoder; // class instantiation bool no_error() { return error.empty(); }