Browse Source

Another fix to avoid conflict names issues with mingw + pegtl.

Fixes #13118
https://gitlab.com/kicad/code/kicad/issues/13118
7.0
jean-pierre charras 3 years ago
parent
commit
be8f99e8fe
  1. 5
      eeschema/sim/sim_value.h

5
eeschema/sim/sim_value.h

@ -35,7 +35,10 @@
// that can create issues in .cpp files, mainly on msys2
#if defined (__MINGW32__)
#if defined ( LoadLibrary )
#undef LoadLibrary
#undef LoadLibrary
#endif
#if defined ( GetClassInfo )
#undef GetClassInfo
#endif
#endif

Loading…
Cancel
Save