Angus Leeming <[EMAIL PROTECTED]> writes:

| The attached patch removes those "conversion to integral type of smaller 
| size" warnings from a couple of files in frontends/xforms. This directory is 
| now clean!

One small comment: when you know the type to be "large enough" we can
use this style of casting:

        int(str.length());

instead of 

        static_cast<int>(str.length());

        Lgb

anyway I will apply this.

        Lgb

Reply via email to