From d7cc20e42f27fc56f21103e3e2f7f1a7fc892674 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) [ROCm/rocdecode commit: 3767aae7a174e7558549ad2a40b9ef4702d927cc] --- projects/rocdecode/src/dec_handle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocdecode/src/dec_handle.h b/projects/rocdecode/src/dec_handle.h index fc6ca7615e..150c1cb1cf 100644 --- a/projects/rocdecode/src/dec_handle.h +++ b/projects/rocdecode/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(); }