Browse Source

fix string comparision bug revealed by previous test case

This is due to refactoring of m_names using ASTPointer.
cl-refactor
Lu Guanqun 10 years ago
parent
commit
0a25d83f27
  1. 2
      libsolidity/AST.cpp

2
libsolidity/AST.cpp

@ -505,7 +505,7 @@ void FunctionCall::checkTypeRequirements()
// check duplicate names
for (size_t i = 0; i < m_names.size(); i++) {
for (size_t j = i + 1; j < m_names.size(); j++) {
if (m_names[i] == m_names[j])
if (*m_names[i] == *m_names[j])
BOOST_THROW_EXCEPTION(createTypeError("Duplicate named argument."));
}
}

Loading…
Cancel
Save