83373002d210c0d315666104f495234cb09da4e8
This replaces two members of `BlendfileLinkAppendContext`: * `LinkNodePair libraries` -> `Vector<BlendfileLinkAppendContextLibrary *>` * `LinkNodePair items` -> `std::list<BlendfileLinkAppendContextItem *>` This simplifies the code quite a bit. Making `libraries` a `Vector` works because afaik we never iterate over the libraries while also adding new ones (which would invalidate iterators). It's also nice, necause we use random access in some cases. `items` can't become a vector, because afaik more items may be added while iterating over it. So it's still a linked list now, but with a better type that reduces boilerplate a lot. Pull Request: https://projects.blender.org/blender/blender/pulls/124524
…
Blender
Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline-modeling, rigging, animation, simulation, rendering, compositing, motion tracking and video editing.
Project Pages
Development
License
Blender as a whole is licensed under the GNU General Public License, Version 3. Individual files may have a different, but compatible license.
See blender.org/about/license for details.
Description
Languages
C++
78%
Python
14.9%
C
2.9%
GLSL
1.9%
CMake
1.2%
Other
0.9%
