This PR fixes the CI formatting errors currently on main.
CI has started using clang-format v18, which is unhappy about the JustBeforeDelete function defined in the .h files. Although I could have installed and ran clang-format v18, I realized that this function wasn't even necessary for the classes it was defined in. I have hence removed the function from those files.
I also moved the other empty function definitions to the .cpp files, to keep stylistically consistent with other classes in the plugin.
This PR fixes the CI formatting errors currently on main.
CI has started using clang-format v18, which is unhappy about the
JustBeforeDelete
function defined in the .h files. Although I could have installed and ran clang-format v18, I realized that this function wasn't even necessary for the classes it was defined in. I have hence removed the function from those files.I also moved the other empty function definitions to the
.cpp
files, to keep stylistically consistent with other classes in the plugin.