Skip to content

Commit

Permalink
Fix compilation error '‘assert’ was not declared in this scope' in HA…
Browse files Browse the repository at this point in the history
…NA provider
  • Loading branch information
Maksim Rylov authored and mrylov committed Dec 7, 2020
1 parent 096221c commit 1d116ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/hana/qgshanasettings.cpp
Expand Up @@ -24,7 +24,7 @@ bool QgsHanaIdentifierType::isValid(uint8_t i) noexcept

QgsHanaIdentifierType::Value QgsHanaIdentifierType::fromInt(uint8_t i)
{
assert(isValid(i));
Q_ASSERT(isValid(i));
return static_cast<Value>(i);
}

Expand Down

0 comments on commit 1d116ca

Please sign in to comment.