Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Visual Studio compiler warning (#30)
* Fixed Visual Studio compiler warning "#pragma GCC" causes warning 4068 "Unknown pragma" when compiling with Visual Studio 2022. Maybe the condition should be #if defined(__GNUC__) || defined(__clang__) instead. Both are used in the other files. * Fixed Visual Studio compiler warning Replaced #if defined(__GNUC__) by #if defined(__GNUC__) || defined(__clang__)
- Loading branch information