Use vanill cttrie with pragma metaheader

This commit is contained in:
l.fedorov 2019-10-23 16:10:41 +00:00 committed by cc-engineering
parent bdc372d9e4
commit 817a8195db
4 changed files with 22 additions and 5 deletions

View file

@ -119,13 +119,13 @@ namespace detail {
// handle trivial cases already here
template <typename Stringview,typename FnE,typename... Fns>
constexpr auto checkTrie(TrieNode<>,Stringview&&,FnE&& fne,Fns&&...) // possible via Transition<-1>
constexpr auto checkTrie(TrieNode<> trie,Stringview&& str,FnE&& fne,Fns&&... fns) // possible via Transition<-1>
-> decltype(fne())
{
return fne();
}
template <int Char,typename Next,typename Stringview,typename FnE,typename... Fns,typename =Sfinae<(Char>=0)>>
constexpr auto checkTrie(TrieNode<Transition<Char,Next>>,Stringview&& str,FnE&& fne,Fns&&... fns)
constexpr auto checkTrie(TrieNode<Transition<Char,Next>> trie,Stringview&& str,FnE&& fne,Fns&&... fns)
-> decltype(fne())
{
return (!str.empty() && (*str==Char)) ? checkTrie(Next(),str.substr(1),(FnE&&)fne,(Fns&&)fns...) : fne();

17
3party/cttrie/cttrie.hpp Normal file
View file

@ -0,0 +1,17 @@
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wshorten-64-to-32"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-parameter"
#include "3party/cttrie/cttrie.h"
#pragma clang diagnostic pop
#pragma clang diagnostic pop
#elif defined(__GNUC__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#include "3party/cttrie/cttrie.h"
#pragma GCC diagnostic pop
#endif

View file

@ -17,13 +17,13 @@ namespace detail {
}
template <typename T0,typename... Ts>
constexpr T0&& get_index_impl(int_c<0>,T0&& t0,Ts&&...)
constexpr T0&& get_index_impl(int_c<0>,T0&& t0,Ts&&... ts)
{
return (T0&&)t0;
}
template <unsigned int I,typename T0,typename... Ts>
constexpr auto get_index_impl(int_c<I>,T0&&,Ts&&... ts)
constexpr auto get_index_impl(int_c<I>,T0&& t0,Ts&&... ts)
-> decltype(get_index_impl(int_c<I-1>(),(Ts&&)ts...))
{
return get_index_impl(int_c<I-1>(),(Ts&&)ts...);

View file

@ -3,7 +3,7 @@
#include "base/string_utils.hpp"
#include "coding/parse_xml.hpp"
#include "3party/cttrie/cttrie.h"
#include "3party/cttrie/cttrie.hpp"
#include <algorithm>
#include <cstring>