Skip to content
Snippets Groups Projects
Commit 77d7edd4 authored by callum_linden's avatar callum_linden
Browse files

Update to build on Xcode 6.0: using an assignment in an expressions without parens

parent 6fadab68
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,8 @@ bool LLDirIterator::Impl::next(std::string &fname)
{
boost::smatch match;
std::string name = mIter->path().filename().string();
if (found = boost::regex_match(name, match, mFilterExp))
found = boost::regex_match(name, match, mFilterExp);
if (found)
{
fname = name;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment