Browse Source

removed wrong syntax for ifdef

Kenneth Lausdahl 6 years ago
parent
commit
865e150127

+ 2 - 2
DSL_SemanticAdaptation/be.uantwerpen.ansymo.semanticadaptation.cg.cpp/src/be/uantwerpen/ansymo/semanticadaptation/cg/cpp/generation/Utilities.xtend

@@ -7,7 +7,7 @@ class Utilities {
 	#ifdef SA_DEBUG
 		printf("Invoking «functionName»");
 		printf("\n");
-	#endif SA_DEBUG	''';
+	#endif	''';
 }
 def static String getDebug2(String printf){
 
@@ -15,7 +15,7 @@ def static String getDebug2(String printf){
 	#ifdef SA_DEBUG
 		«printf»
 		printf("\n");
-	#endif SA_DEBUG	''';
+	#endif	''';
 }
 
 }