[Bf-committers] Compilation, msvc 7.1 and scons : problem with an array statement in sculptmode.c

Nicholas Bishop nicholasbishop at gmail.com
Thu Mar 15 21:53:36 CET 2007


My bad, fixed in CVS now.

-Nicholas

On 3/15/07, jean-michel soler <jmsoler at free.fr> wrote:
> void calc_flatten_center(Mesh *me, ActiveData *node, const EditData *e,
> float co[3])
> {
>     const int FTOT = 10;
>     ActiveData *outer[FTOT];
>     int i;
>
> Does not compile, error on the constant FTOT used in the array,
> No problem with:
>
> void calc_flatten_center(Mesh *me, ActiveData *node, const EditData *e,
> float co[3])
> {
>     const int FTOT = 10;
>     ActiveData *outer[10];
>     int i;
>
> jms
>
>
>
> _______________________________________________
> Bf-committers mailing list
> Bf-committers at projects.blender.org
> http://projects.blender.org/mailman/listinfo/bf-committers
>


More information about the Bf-committers mailing list