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
+2 -2
View File
@@ -15,7 +15,7 @@
#if defined(EVMC_LOADER_MOCK)
#include "../../test/unittests/loader_mock.h"
#elif _WIN32
#elif defined(_WIN32)
#include <Windows.h>
#define DLL_HANDLE HMODULE
#define DLL_OPEN(filename) LoadLibrary(filename)
@@ -136,7 +136,7 @@ evmc_create_fn evmc_load(const char* filename, enum evmc_loader_error_code* erro
// Find filename in the path.
const char* sep_pos = strrchr(filename, '/');
#if _WIN32
#ifdef _WIN32
// On Windows check also Windows classic path separator.
const char* sep_pos_windows = strrchr(filename, '\\');
sep_pos = sep_pos_windows > sep_pos ? sep_pos_windows : sep_pos;