diff options
Diffstat (limited to 'src/fstring.h')
-rw-r--r-- | src/fstring.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/fstring.h b/src/fstring.h index 31b55d2..a9b4c95 100644 --- a/src/fstring.h +++ b/src/fstring.h | |||
@@ -19,21 +19,12 @@ | |||
19 | #include "bu/archival.h" | 19 | #include "bu/archival.h" |
20 | #include "bu/archive.h" | 20 | #include "bu/archive.h" |
21 | #include "bu/hash.h" | 21 | #include "bu/hash.h" |
22 | #include "bu/util.h" | ||
22 | 23 | ||
23 | #ifndef min | 24 | #ifndef min |
24 | #define min( a, b ) ((a<b)?(a):(b)) | 25 | #define min( a, b ) ((a<b)?(a):(b)) |
25 | #endif | 26 | #endif |
26 | 27 | ||
27 | /* I borrowed this from someone who borrowed it from glib who borrowed it | ||
28 | * from... | ||
29 | */ | ||
30 | #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) | ||
31 | #define DEPRECATED __attribute__((__deprecated__)) | ||
32 | #else | ||
33 | #define DEPRECATED | ||
34 | #endif /* __GNUC__ */ | ||
35 | |||
36 | |||
37 | namespace Bu | 28 | namespace Bu |
38 | { | 29 | { |
39 | template< typename chr > | 30 | template< typename chr > |