Blender Git Commit Log
Git Commits -> Revision 78f29f6
Revision 78f29f6 by Ankit Meel (soc-2020-io-performance) July 27, 2020, 08:08 (GMT) |
Fix build error due to forward enum declaration In full build, the following error happens. So fix it by including the definition file before the forward declaration one. ``` In file included from source/blender/io/collada/SkinInfo.cpp:40: source/blender/blenkernel/BKE_object_deform.h:62:6: error: enumeration previously declared with nonfixed underlying type enum eVGroupSelect ^ In file included from source/blender/io/collada/SkinInfo.cpp:36: source/blender/makesdna/DNA_scene_types.h:2099:14: note: previous declaration is here typedef enum eVGroupSelect { ^ 1 error generated. ``` |
Commit Details:
Full Hash: 78f29f6c0a169c3cefd415fb8fb8e5a1d9d8bf60
Parent Commit: b33a459
Lines Changed: +3, -5