diff --git a/pe-parser-library/include/parser-library/nt-headers.h b/pe-parser-library/include/parser-library/nt-headers.h index c284297..ee94091 100644 --- a/pe-parser-library/include/parser-library/nt-headers.h +++ b/pe-parser-library/include/parser-library/nt-headers.h @@ -193,7 +193,7 @@ constexpr std::uint16_t IMAGE_SYM_DTYPE_FUNCTION = 2; constexpr std::uint16_t IMAGE_SYM_DTYPE_ARRAY = 3; // Symbol table storage classes -constexpr std::uint8_t IMAGE_SYM_CLASS_END_OF_FUNCTION = static_cast(-1); +constexpr std::uint8_t IMAGE_SYM_CLASS_END_OF_FUNCTION = static_cast(-1); constexpr std::uint8_t IMAGE_SYM_CLASS_NULL = 0; constexpr std::uint8_t IMAGE_SYM_CLASS_AUTOMATIC = 1; constexpr std::uint8_t IMAGE_SYM_CLASS_EXTERNAL = 2;