Mark EVMC_LATEST_REVISION as deprecated

This commit is contained in:
Paweł Bylica 2019-01-21 11:22:08 +01:00
parent 2827ca621b
commit dc25196cd1
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
1 changed files with 9 additions and 1 deletions

View File

@ -720,7 +720,15 @@ enum evmc_revision
EVMC_ISTANBUL = 6,
/** The maximum EVM revision supported. */
EVMC_MAX_REVISION = EVMC_ISTANBUL
EVMC_MAX_REVISION = EVMC_ISTANBUL,
/**
* The latests EVM revision supported.
*
* @deprecated Replaced with ::EVMC_MAX_REVISION.
*/
EVMC_LATEST_REVISION EVMC_DEPRECATED = EVMC_MAX_REVISION
};