summary refs log tree commit diff stats
path: root/lib/part.h
diff options
context:
space:
mode:
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>;