Commit 6e237de6d84fdfc44e1f466de490e5b74226fb54

Vicent Marti 2013-01-11T18:19:52

regex: Proper define for this thing

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/deps/regex/regex_internal.h b/deps/regex/regex_internal.h
index aa38207..53ccebe 100644
--- a/deps/regex/regex_internal.h
+++ b/deps/regex/regex_internal.h
@@ -28,11 +28,11 @@
 #include <string.h>
 
 #ifndef UNUSED
-#ifdef __GNUC__
-#define UNUSED __attribute__((unused))
-#endif
-#else
-#define UNUSED
+#	ifdef __GNUC__
+#		define UNUSED __attribute__((unused))
+#	else
+#		define UNUSED
+#	endif
 #endif
 
 #if defined HAVE_LANGINFO_H || defined HAVE_LANGINFO_CODESET || defined _LIBC