Cleanup: Unnecessary const in declaration, format

This commit is contained in:
Hans Goudey 2024-05-02 12:42:55 -04:00
parent 8e948a498d
commit 6f5f70994e

@ -96,8 +96,7 @@ using IDTypeForeachPathFunction = void (*)(ID *id, BPathForeachPathData *bpath_d
* fully valid, and can be asserted on. But in some cases, they are not (fully) valid, e.g when
* copying an ID and all of its embedded data.
*/
using IDTypeEmbeddedOwnerPointerGetFunction = ID *
*(*)(ID * id, const bool debug_relationship_assert);
using IDTypeEmbeddedOwnerPointerGetFunction = ID **(*)(ID *id, bool debug_relationship_assert);
using IDTypeBlendWriteFunction = void (*)(BlendWriter *writer, ID *id, const void *id_address);
using IDTypeBlendReadDataFunction = void (*)(BlendDataReader *reader, ID *id);