From 362e2c25f436c778e9efff30be2935833ece23e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Mat=C4=9Bj?= Date: Mon, 10 Jun 2024 12:32:49 +0200 Subject: [PATCH] Mark `goal_action_is_replay` as LIBDNF_API to fix build PR that adds the API (https://github.com/rpm-software-management/dnf5/pull/1452) was merged right before https://github.com/rpm-software-management/dnf5/pull/1307 so its missing there. --- include/libdnf5/base/goal_elements.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libdnf5/base/goal_elements.hpp b/include/libdnf5/base/goal_elements.hpp index 5b686032c..54d17cf8f 100644 --- a/include/libdnf5/base/goal_elements.hpp +++ b/include/libdnf5/base/goal_elements.hpp @@ -157,7 +157,7 @@ enum class GoalAction { LIBDNF_API std::string goal_action_to_string(GoalAction action); /// Check whether the action is a replay action -bool goal_action_is_replay(GoalAction action); +LIBDNF_API bool goal_action_is_replay(GoalAction action); /// Settings for GoalJobSettings enum class GoalSetting { AUTO, SET_TRUE, SET_FALSE };