Upgrade to EVMC 7.5.0

One important change: MockedAccount.storage is a map and not unordered_map
This commit is contained in:
Alex Beregszaszi
2021-04-21 21:05:40 +01:00
parent 83213e659d
commit f1aaae36ee
8 changed files with 93 additions and 80 deletions
+3 -3
View File
@@ -14,7 +14,7 @@
*/
#pragma once
#if __cplusplus
#ifdef __cplusplus
extern "C" {
#endif
@@ -161,9 +161,9 @@ struct evmc_vm* evmc_load_and_configure(const char* config,
* @return Error message or NULL if no additional information is available.
* The returned pointer MUST NOT be freed by the caller.
*/
const char* evmc_last_error_msg();
const char* evmc_last_error_msg(void);
#if __cplusplus
#ifdef __cplusplus
}
#endif