From ab09407c3d5046111547f65a6c6f6c4da22fa98f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 5 Dec 2024 13:26:58 -0600 Subject: [PATCH] refactor --- repertory/librepertory/include/db/meta_db.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/repertory/librepertory/include/db/meta_db.hpp b/repertory/librepertory/include/db/meta_db.hpp index c566151f..9ce6aa71 100644 --- a/repertory/librepertory/include/db/meta_db.hpp +++ b/repertory/librepertory/include/db/meta_db.hpp @@ -27,7 +27,8 @@ namespace repertory { class app_config; -auto create_meta_db(const app_config &cfg) -> std::unique_ptr; +[[nodiscard]] auto create_meta_db(const app_config &cfg) + -> std::unique_ptr; } // namespace repertory #endif // REPERTORY_INCLUDE_DB_META_DB_HPP_