diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-09-15 20:03:56 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-09-15 20:03:56 +0000 |
commit | 597a1487c716b799428f4b4a4903e65df4c93ba9 (patch) | |
tree | c743b0d4dfc3bacbffc196589543ec4e9abf1aaf /src/fstring.h | |
parent | 3c6cb7f2347aed974543f9082a0ccd297577db41 (diff) | |
download | libbu++-597a1487c716b799428f4b4a4903e65df4c93ba9.tar.gz libbu++-597a1487c716b799428f4b4a4903e65df4c93ba9.tar.bz2 libbu++-597a1487c716b799428f4b4a4903e65df4c93ba9.tar.xz libbu++-597a1487c716b799428f4b4a4903e65df4c93ba9.zip |
Whoa! Loads of NIDS work. It actually compiles, runs, and I'm optimizing the
hell out of it. Good times, everyone. This is a major chunk for congo, and
the new optimizations should be good.
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 > |