From 867c2969ccd993f8c064710df5fb754308624eae Mon Sep 17 00:00:00 2001 From: Stepland <16676308+Stepland@users.noreply.github.com> Date: Wed, 19 Feb 2020 17:32:43 +0100 Subject: [PATCH] Fix forward declaration --- src/Data/KeyMapping.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/KeyMapping.hpp b/src/Data/KeyMapping.hpp index deff8d7..f9d2e39 100644 --- a/src/Data/KeyMapping.hpp +++ b/src/Data/KeyMapping.hpp @@ -23,7 +23,7 @@ namespace Data { std::unordered_map m_key_to_button; std::unordered_map m_button_to_key; - friend class Preferences; + friend struct Preferences; }; }