]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - intrin.c
Remove some trailing whitespace
[xonotic/gmqcc.git] / intrin.c
index 26012e78765757dea350ac81e7dd59d0233a962d..e4f398615464c5be06d8307cd458ae12c02e4891 100644 (file)
--- a/intrin.c
+++ b/intrin.c
@@ -57,7 +57,7 @@
         vec_push(intrin->parser->globals,   (ast_expression*)(VALUE)); \
     } while (0)
 
-#define QC_M_E 2.71828182845905
+#define QC_M_E 2.71828182845905f
 
 static ast_expression *intrin_pow (intrin_t *intrin) {
     /*
@@ -351,7 +351,7 @@ static ast_expression *intrin_isnan(intrin_t *intrin) {
 #undef INTRIN_REG
 #undef INTRIN_VAL
 
-/* 
+/*
  * TODO: make static (and handle ast_type_string) here for the builtin
  * instead of in SYA parse close.
  */
@@ -365,7 +365,7 @@ static const intrin_func_t intrinsics[] = {
     {&intrin_mod,              "__builtin_mod",              "mod"},
     {&intrin_pow,              "__builtin_pow",              "pow"},
     {&intrin_isnan,            "__builtin_isnan",            "isnan"},
-    {&intrin_debug_typestring, "__builtin_debug_typestring", ""} 
+    {&intrin_debug_typestring, "__builtin_debug_typestring", ""}
 };
 
 static void intrin_error(intrin_t *intrin, const char *fmt, ...) {