Subject: Re: [boost] [ boost ] [ Trie ]
From: Cosmin Boaca (boost.cosmin.boaca_at_[hidden])
Date: 2015-02-25 18:49:23


Hello,

I have performed the modifications in trie_set. However, do you think you
have time to compile this piece of code ?

#include <boost/trie/trie.hpp>

int main() {
     boost::tries::trie<int, int> t;
     boost::tries::trie<int, int>::const_iterator it = t.cbegin();
     return 0;
}

I just can't figure out how to get this code compiling. Please tell me what
should I do. The compile errors reffer to trie_node_type from the
trie_iterator class but I can't figure out how to define it other than the
way it is.

Thank you,
Cosmin