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:42:27 -0500
commite4fe5974f123cfba6d8eff908e7f1772b0b9635f (patch)
tree69477cee57289107f2081eafecb95ffbcb4c47fa /lib/part.h
parent2f938ddd17190497e21194a0ef3e1cfa14f68943 (diff)
downloadverbly-e4fe5974f123cfba6d8eff908e7f1772b0b9635f.tar.gz
verbly-e4fe5974f123cfba6d8eff908e7f1772b0b9635f.tar.bz2
verbly-e4fe5974f123cfba6d8eff908e7f1772b0b9635f.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>;