Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

| jns1> ImportNoweb.h, line 43: Invalid pure specifier.  static const
| jns1> int BUFSIZE = 512; -----------------------------------^ *** Exit
| jns1> 1 Stop.  *** Exit 1 Stop.  #

Some compilers have a problem with static const in classes, one
solution is to use an enum in stead:

enum {
        BUFSIZE = 512
};

        Lgb

Reply via email to