Skip to content
Snippets Groups Projects
Commit 76e0c02d authored by Andreas Schenk's avatar Andreas Schenk
Browse files

fixed invalid boost::get<> in query_ast for boost 1.58

parent 68a43c51
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ void SelNode::Dump(int level) const{
String op = CompOPToString(op_);
switch(sel_.type) {
case Prop::STRING:
std::cout << sel_.GetName()<< " " << op << " " << boost::get<String>(param_) << std::endl;
std::cout << sel_.GetName()<< " " << op << " " << boost::get<StringOrRegexParam>(param_).str() << std::endl;
break;
case Prop::FLOAT:
std::cout << sel_.GetName()<< " " << op << " " << boost::get<float>(param_) << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment