4449fba2f3cab75147ccbd86d3bcb19cde2a523c
The use of `const` for Objective-C object pointer is not standard and generally unsound. Unlike a C++ class, which has support for const and non-const methods. An Objective-C object will still respond to mutable selectors even if its object pointer is const, making it semantically useless. Another problem with const Objective-C object is that they cannot be properly passed into other Objective-C object selectors due to type differences. Even if that selector didn't modify the underlying object. For consistency with general Objective-C code style guidelines, usage of const pointer syntax (`Class *const`) were also removed. Ref #126772 Pull Request: https://projects.blender.org/blender/blender/pulls/126768
…
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%
