From fd7f460b81f9b206cbecfb7877f57993fa35818f Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Thu, 16 Oct 2025 08:32:20 +0200 Subject: [PATCH] Add missing noexcept for yaml method implementation Signed-off-by: Uilian Ries --- src/DaggyCore/Sources.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DaggyCore/Sources.cpp b/src/DaggyCore/Sources.cpp index b4f72dc2..1825ba00 100644 --- a/src/DaggyCore/Sources.cpp +++ b/src/DaggyCore/Sources.cpp @@ -408,7 +408,7 @@ catch (const std::exception& exception) { } #else -std::optional daggy::sources::convertors::yaml(const QString& data, QString& error) +std::optional daggy::sources::convertors::yaml(const QString& data, QString& error) noexcept { error = "yaml not supported"; return {};