From 455a4f2176a5cfbe325e1e40cea20dd3e466b64c Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 12 Jun 2024 12:30:04 +0200 Subject: Avoid conflict with C++17 features std::byte by using uint8 type instead of byte --- src/Common/SCardLoader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Common/SCardLoader.h') diff --git a/src/Common/SCardLoader.h b/src/Common/SCardLoader.h index b1ab114b..a7243d82 100644 --- a/src/Common/SCardLoader.h +++ b/src/Common/SCardLoader.h @@ -14,7 +14,7 @@ #include #include "reader.h" typedef LPSCARD_READERSTATE_A LPSCARD_READERSTATE; -using VeraCrypt::byte; +using VeraCrypt::uint8; #define BOOL int #else #undef BOOL @@ -22,7 +22,7 @@ using VeraCrypt::byte; #include #include #include -using VeraCrypt::byte; +using VeraCrypt::uint8; #define BOOL int #endif #endif -- cgit v1.2.3