We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
to compile with Visual Studio 2015, I had to modify the beginning of lzham_types.h. I made this:
// File: types.h // See Copyright Notice and license at the end of include/lzham.h #pragma once
// TODO #if defined(_MSC_VER) && (!(defined(MUST_UNDEFINE_STDINTTYPE))) #if _MSC_VER >= 1900 #define MUST_UNDEFINE_STDINTTYPE #endif #endif
#if defined(APPLE) || defined(FreeBSD) || defined(NetBSD) || defined(MUST_UNDEFINE_STDINTTYPE) #undef INT8_MIN ...
and file continue
In small word, VS2015 and later are like APPLE, we must undefine these type.
The text was updated successfully, but these errors were encountered:
probably same thing in #20
Sorry, something went wrong.
No branches or pull requests
Hello,
to compile with Visual Studio 2015, I had to modify the beginning of lzham_types.h. I made this:
// File: types.h
// See Copyright Notice and license at the end of include/lzham.h
#pragma once
// TODO
#if defined(_MSC_VER) && (!(defined(MUST_UNDEFINE_STDINTTYPE)))
#if _MSC_VER >= 1900
#define MUST_UNDEFINE_STDINTTYPE
#endif
#endif
#if defined(APPLE) || defined(FreeBSD) || defined(NetBSD) || defined(MUST_UNDEFINE_STDINTTYPE)
#undef INT8_MIN
...
and file continue
In small word, VS2015 and later are like APPLE, we must undefine these type.
The text was updated successfully, but these errors were encountered: