You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In MARK entities we can define ops. They collect functions/methods with a common purpose but different signatures. To differentiate between functions/methods with the same name we can provide type specifiers to parameters of ops.
Generic/Template types are not properly resolved in Codyze.
For example, in BotanRuleTest.test_rule_2_1_01() the method set_key() is not identified by Codyze. There is a type mismatch in the op itself but even when changing the type to Botan::secure_vector<uint8_t> doesn't fix the problem. Only the non generic type Botan::secure_vector is recognized.
The text was updated successfully, but these errors were encountered:
In MARK entities we can define
op
s. They collect functions/methods with a common purpose but different signatures. To differentiate between functions/methods with the same name we can provide type specifiers to parameters ofop
s.Generic/Template types are not properly resolved in Codyze.
For example, in
BotanRuleTest.test_rule_2_1_01()
the methodset_key()
is not identified by Codyze. There is a type mismatch in theop
itself but even when changing the type toBotan::secure_vector<uint8_t>
doesn't fix the problem. Only the non generic typeBotan::secure_vector
is recognized.The text was updated successfully, but these errors were encountered: