blob: f57e79f1be0d4bdfa7e0d6fa9a8d158d0d213515 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- librawstudio/rs-macros.h.orig 2011-02-15 17:28:05 UTC
+++ librawstudio/rs-macros.h
@@ -51,12 +51,12 @@
#if __GNUC__ >= 3
#define likely(x) __builtin_expect (!!(x), 1)
#define unlikely(x) __builtin_expect (!!(x), 0)
-#define align(x) __attribute__ ((aligned (x)))
+// #define align(x) __attribute__ ((aligned (x)))
#define __deprecated __attribute__ ((deprecated))
#else
#define likely(x) (x)
#define unlikely(x) (x)
-#define align(x)
+// #define align(x)
#define __deprecated
#endif
|