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/Setting.hpp | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'src/Setting.hpp') diff --git a/src/Setting.hpp b/src/Setting.hpp index 1e1aa6f..4bcfc81 100644 --- a/src/Setting.hpp +++ b/src/Setting.hpp @@ -7,9 +7,8 @@ #include "Coord.hpp" #include "PortType.hpp" -#include - #include +#include namespace patchage { namespace setting { @@ -70,19 +69,19 @@ struct Zoom { } // namespace setting /// A configuration setting -using Setting = boost::variant; +using Setting = std::variant; } // namespace patchage -- cgit v1.2.1