Dekel Tsur <[EMAIL PROTECTED]> writes:

| g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost    -isystem
| /usr/X11R6/include  -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C
| buffer.C:21: bitset: No such file or directory
| make[2]: *** [buffer.o] Error 1

And I don't see whay a bitset should be used...

enum PAR_TAG {
        NONE = 0
        TT = 1,
        SF = 2,
        BF = 4,
        IT = 8,
        SL = 16,
        EM = 32
};


And instead of bitset<LAST> tag_close;

PAR_TAG tag_close = 0;

Instead of the tag_close.set(...)

tag_close |= ...;

tag_close.any() -> tag_close

tag_close.reset(...) -> ???

tag_close[...] -> tag_close & ...


        Lgb

| 

-- 
        Lgb

Reply via email to