Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Suda committed Oct 18, 2017
1 parent f4bdd1e commit 49080eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shell/SymbolDefinitionInlining.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ TermList SymbolDefinitionInlining::process(TermList ts) {
bool SymbolDefinitionInlining::mirroredTuple(Term* tuple, TermList &tupleConstant) {
bool foundTupleConstant = false;
unsigned tupleSort = env.signature->getFunction(tuple->functor())->fnType()->result();
ASS(env.sorts->hasStructuredSort(tupleSort, StructuredSort::TUPLE));
ASS(env.sorts->hasStructuredSort(tupleSort, Sorts::StructuredSort::TUPLE));
for (unsigned i = 0; i < tuple->arity(); i++) {
if (!tuple->nthArgument(i)->isTerm()) {
return false;
Expand Down

0 comments on commit 49080eb

Please sign in to comment.