Reformat comments for EVMC capabilities

This commit is contained in:
Paweł Bylica 2019-05-08 13:41:59 +02:00
parent 08d31adc85
commit 3854d01047
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
1 changed files with 9 additions and 2 deletions

View File

@ -815,8 +815,15 @@ typedef struct evmc_result (*evmc_execute_fn)(struct evmc_instance* instance,
*/
enum evmc_capabilities
{
EVMC_CAPABILITY_EVM1 = (1u << 0), /**< The VM is capable of executing EVM1 bytecode. */
EVMC_CAPABILITY_EWASM = (1u << 1) /**< The VM is capable of execution ewasm bytecode. */
/**
* The VM is capable of executing EVM1 bytecode.
*/
EVMC_CAPABILITY_EVM1 = (1u << 0),
/**
* The VM is capable of executing ewasm bytecode.
*/
EVMC_CAPABILITY_EWASM = (1u << 1)
};
/**