From 119524770cd85333a3c3daa4f9e58b2ee4067d9e Mon Sep 17 00:00:00 2001 From: EndrII Date: Fri, 14 Aug 2020 10:28:27 +0300 Subject: [PATCH] fix warnings --- pe-parser-library/include/parser-library/nt-headers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;