summary refs log tree commit diff stats
path: root/lib/part.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2022-12-14 10:19:40 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2022-12-14 10:19:40 -0500
commit6218b88920120dea23d605856b9d27f9deb4746c (patch)
tree657840cc60749db1e8ee453593211cd336462e98 /lib/part.h
parentc498cfa5cfd6408b465e45409987467b47b2b73d (diff)
downloadverbly-6218b88920120dea23d605856b9d27f9deb4746c.tar.gz
verbly-6218b88920120dea23d605856b9d27f9deb4746c.tar.bz2
verbly-6218b88920120dea23d605856b9d27f9deb4746c.zip
Migrate from mpark::variant to std::variant
Diffstat (limited to 'lib/part.h')
-rw-r--r--lib/part.h6
1 files changed, 3 insertions, 3 deletions
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 @@
6#include <set> 6#include <set>
7#include <list> 7#include <list>
8#include <hkutil/database.h> 8#include <hkutil/database.h>
9#include <variant.hpp> 9#include <variant>
10#include "field.h" 10#include "field.h"
11#include "filter.h" 11#include "filter.h"
12#include "enums.h" 12#include "enums.h"
@@ -129,8 +129,8 @@ namespace verbly {
129 }; 129 };
130 130
131 using variant_type = 131 using variant_type =
132 mpark::variant< 132 std::variant<
133 mpark::monostate, 133 std::monostate,
134 np_type, 134 np_type,
135 prep_type, 135 prep_type,
136 std::string>; 136 std::string>;