From 50ef890ae0c63ce9abc26fcd2d864ea4f6e97cb9 Mon Sep 17 00:00:00 2001 From: Alexandru Ene Date: Thu, 18 Jun 2020 16:56:03 +0100 Subject: [PATCH] Fix compilation error due to redefinition. --- crates/c-api/include/wasmtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/c-api/include/wasmtime.h b/crates/c-api/include/wasmtime.h index d5081298e4..052a114fd7 100644 --- a/crates/c-api/include/wasmtime.h +++ b/crates/c-api/include/wasmtime.h @@ -39,7 +39,7 @@ enum wasmtime_opt_level_enum { // OptLevel }; typedef uint8_t wasmtime_profiling_strategy_t; -enum wasmtime_profiling_strategy_t { // ProfilingStrategy +enum wasmtime_profiling_strategy_enum { // ProfilingStrategy WASMTIME_PROFILING_STRATEGY_NONE, WASMTIME_PROFILING_STRATEGY_JITDUMP, WASMTIME_PROFILING_STRATEGY_VTUNE,