From 3459b83736f0e4eedfb95a1394d9e4ee1523b917 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Tue, 21 Jun 2016 17:22:51 -0700 Subject: [core, node] Node bindings for setFilter --- benchmark/parse/filter.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'benchmark') diff --git a/benchmark/parse/filter.cpp b/benchmark/parse/filter.cpp index 8beff3b308..4269f8e169 100644 --- a/benchmark/parse/filter.cpp +++ b/benchmark/parse/filter.cpp @@ -2,7 +2,8 @@ #include #include -#include +#include +#include #include #include @@ -16,7 +17,7 @@ typedef std::multimap Properties; style::Filter parse(const char* expression) { rapidjson::GenericDocument, rapidjson::CrtAllocator> doc; doc.Parse<0>(expression); - return style::parseFilter(doc); + return style::conversion::convertFilter(doc).get(); } static void Parse_Filter(benchmark::State& state) { -- cgit v1.2.1