diff options
Diffstat (limited to 'src/binary.h')
-rw-r--r-- | src/binary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary.h b/src/binary.h index 84b9447a..d784fff1 100644 --- a/src/binary.h +++ b/src/binary.h @@ -59,7 +59,7 @@ static const int kBinarySectionCount = WABT_ENUM_COUNT(BinarySection); extern const char* g_section_name[]; -static WABT_INLINE const char* get_section_name(BinarySection sec) { +static WABT_INLINE const char* GetSectionName(BinarySection sec) { assert(static_cast<int>(sec) < kBinarySectionCount); return g_section_name[static_cast<size_t>(sec)]; } |