From b1f1c2670345459bf3be808fb6eff8637dcda663 Mon Sep 17 00:00:00 2001 From: Michael Krasnyk Date: Mon, 23 Jan 2017 13:59:22 +0100 Subject: [PATCH] Remove decltype(Value::source), fixes xcode 7.3 compilation --- src/contractor/contractor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contractor/contractor.cpp b/src/contractor/contractor.cpp index 8901a1785..398634dd4 100644 --- a/src/contractor/contractor.cpp +++ b/src/contractor/contractor.cpp @@ -209,7 +209,7 @@ template struct CSVFilesParser boost::spirit::istream_iterator sfirst(input_stream), slast; Iterator first(sfirst), last(slast); - BOOST_ASSERT(file_id <= std::numeric_limits::max()); + BOOST_ASSERT(file_id <= std::numeric_limits::max()); ValueRule value_source = value_rule[qi::_val = qi::_1, boost::phoenix::bind(&Value::source, qi::_val) = file_id]; qi::rule()> csv_line =