PAUSE/RESUME fixed
Please, review this :)
I haven't tested the whole thing after issues fixing yet.
Now it's tested that with the given changes pause/resume still works.
Hi, you have a huge list of files with conflicts due to PR with formatting. Steps for rebasing.
save files that were changed in your PR git checkout master git pull git checkout git rebase -i HEAD~0 --onto master(this line delete all your changes, don't forget to save it) copy back saved files to the repository format files: find ./ -type f ( -iname *.c -o -iname *.h -o -iname *.cpp -o -iname *.hpp ) -exec clang-format -style=file -i {} ; git commit -am "Name of PR" git push -f If you have a questions or want my help you can ask me here :)