Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-10-17 10:55:42 +0300
committerbubnikv <bubnikv@gmail.com>2016-10-17 10:55:42 +0300
commit52dc18e350c5379bd13150df1ff289e965204d73 (patch)
tree5c17f1a87184f0b41d2ae3f630d7db958e90164b /xs/src/Shiny/ShinyMacros.h
parent19312d0a1aa8f85a8413216af603baca6ad42960 (diff)
Hopefully fixed compilation of the Shiny profiler on Linux,
where the Shiny profiler shall be disabled.
Diffstat (limited to 'xs/src/Shiny/ShinyMacros.h')
-rw-r--r--xs/src/Shiny/ShinyMacros.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xs/src/Shiny/ShinyMacros.h b/xs/src/Shiny/ShinyMacros.h
index 645cbeff1..f16b5f959 100644
--- a/xs/src/Shiny/ShinyMacros.h
+++ b/xs/src/Shiny/ShinyMacros.h
@@ -27,7 +27,7 @@ THE SOFTWARE.
#include "ShinyManager.h"
-#ifdef SHINY_IS_COMPILED
+#if SHINY_IS_COMPILED == TRUE
/*---------------------------------------------------------------------------*/
/* public preprocessors */
@@ -254,7 +254,7 @@ THE SOFTWARE.
/*---------------------------------------------------------------------------*/
-#else /* #if SHINY_IS_COMPILED == TRUE */
+#else /* if SHINY_IS_COMPILED == TRUE */
#ifdef __cplusplus
extern "C" {
@@ -292,6 +292,6 @@ SHINY_INLINE ShinyData GetEmptyData() {
#define PROFILE_SET_ENABLED(boolean)
#endif
-#endif /* SHINY_IS_COMPILED */
+#endif /* SHINY_IS_COMPILED == TRUE */
#endif /* SHINY_MACROS_H */