Skip to content

Commit

Permalink
msvc: fix that the macro _MSC_VER was wrong in config.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Mar 1, 2025
1 parent 84bfabc commit 0cf9c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/libremidi/config.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#if defined(MSC_VER)
#if defined(_MSC_VER)
#define NOMINMAX 1
#define WIN32_LEAN_AND_MEAN
#endif
Expand Down

0 comments on commit 0cf9c8f

Please sign in to comment.