From 6218b88920120dea23d605856b9d27f9deb4746c Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 14 Dec 2022 10:19:40 -0500 Subject: Migrate from mpark::variant to std::variant --- lib/part.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/part.h') diff --git a/lib/part.h b/lib/part.h index 7783a61..a2d3667 100644 --- a/lib/part.h +++ b/lib/part.h @@ -6,7 +6,7 @@ #include #include #include -#include +#include #include "field.h" #include "filter.h" #include "enums.h" @@ -129,8 +129,8 @@ namespace verbly { }; using variant_type = - mpark::variant< - mpark::monostate, + std::variant< + std::monostate, np_type, prep_type, std::string>; -- cgit 1.4.1