Angus Leeming <[EMAIL PROTECTED]> writes:

| The following works:
|       template<class Stream>
|       void composite(Stream & stream)
|               {
| +                     int t, wp;
| +                     t  = static_cast<int>(target);
| +                     wp = static_cast<int>(which_pages);

Please use:

        int t = static_...
        int wp = static_...

        Lgb

Reply via email to