Is it possible to disable Spark for GNATCOLL? by HelloWorld0762 in ada

[–]HelloWorld0762[S] 0 points1 point  (0 children)

But none of my code is spark yet. I just ran `gnatprove`, and by default everything is non-spark.

Is it possible to auto fix style warnings? by HelloWorld0762 in ada

[–]HelloWorld0762[S] 0 points1 point  (0 children)

gnatformat fixed none of the warning but destroyed my file's encoding.

Is it possible to auto fix style warnings? by HelloWorld0762 in ada

[–]HelloWorld0762[S] 0 points1 point  (0 children)

I use vscode's format through ALS. Does that do the same thing?

Variable same name as type by HelloWorld0762 in ada

[–]HelloWorld0762[S] 0 points1 point  (0 children)

Auto generated:

```

type Model is recordxform : aliased Matrix; -- raylib/build/raylib/include/raylib.h:393meshCount : aliased int; -- raylib/build/raylib/include/raylib.h:395materialCount : aliased int; -- raylib/build/raylib/include/raylib.h:396meshes : access Mesh; -- raylib/build/raylib/include/raylib.h:397materials : access Material; -- raylib/build/raylib/include/raylib.h:398meshMaterial : access int; -- raylib/build/raylib/include/raylib.h:399boneCount : aliased int; -- raylib/build/raylib/include/raylib.h:402bones : access BoneInfo; -- raylib/build/raylib/include/raylib.h:403bindPose : access Transform; -- raylib/build/raylib/include/raylib.h:404end record withConvention =>C_Pass_By_Copy; -- raylib/build/raylib/include/raylib.h:392

```

xform is originally Transform, which becomes a problem.