patrick
/
plasp
Archived
1
0
Fork 0

Added fix for gcc.

This commit is contained in:
Patrick Lühne 2016-06-07 16:14:17 +02:00
parent e6ddad5960
commit 188165bc4d
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ void Domain::checkConsistency()
const auto acceptType =
[&](const auto *type)
{
return ((type == nullptr) != hasRequirement(Requirement::Type::Typing));
return ((type == nullptr) != this->hasRequirement(Requirement::Type::Typing));
};
std::for_each(m_constants.cbegin(), m_constants.cend(),