From 4f6281e52d3183ae53510d59474f6e4708da40c3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Aug 2022 13:06:56 -0400 Subject: Replace boost with standard C++17 facilities --- src/Action.hpp | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/Action.hpp') diff --git a/src/Action.hpp b/src/Action.hpp index 688a73c..c791445 100644 --- a/src/Action.hpp +++ b/src/Action.hpp @@ -9,7 +9,7 @@ #include "Setting.hpp" #include "SignalDirection.hpp" -#include +#include namespace patchage { namespace action { @@ -68,22 +68,22 @@ struct ZoomOut {}; } // namespace action /// A high-level action from the user -using Action = boost::variant; +using Action = std::variant; } // namespace patchage -- cgit v1.2.1