Skip to content

Commit

Permalink
fix ORCA_CHECK_GCODE_PLACEHOLDERS redefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
henrivdr committed Aug 13, 2024
1 parent a706227 commit 5b8b9a5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/libslic3r/libslic3r_version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
//#define SLIC3R_RC_VERSION "@SLIC3R_VERSION@"
#define BBL_RELEASE_TO_PUBLIC @BBL_RELEASE_TO_PUBLIC@
#define BBL_INTERNAL_TESTING @BBL_INTERNAL_TESTING@
#define ORCA_CHECK_GCODE_PLACEHOLDERS @ORCA_CHECK_GCODE_PLACEHOLDERS@

// @ORCA_CHECK_GCODE_PLACEHOLDERS@
// Logic taken from ./src/libslic3r/GCode.hpp
#if !defined(NDEBUG)
#define ORCA_CHECK_GCODE_PLACEHOLDERS 1
#else
#define ORCA_CHECK_GCODE_PLACEHOLDERS 0
#endif

#endif /* __SLIC3R_VERSION_H */

0 comments on commit 5b8b9a5

Please sign in to comment.