zeromq / cppzmq

Header-only C++ binding for libzmq
http://www.zeromq.org
MIT License
1.94k stars 757 forks source link

Format the code using existing .clang-format #532

Open borosko opened 2 years ago

borosko commented 2 years ago

The repo has a .clang-format defined, but since there is nothing enforcing it, it is possible to commit code not properly formatted.

Executed the following command from Command Prompt in the root of the repository, without any other changes: for /r %a in (*.cpp *.h *.hpp) do "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\bin\clang-format.exe" -i "%a"

Here's the clang version used: "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\bin\clang-format.exe" --version clang-format version 12.0.0

coveralls commented 2 years ago

Pull Request Test Coverage Report for Build 1637042349


Totals Coverage Status
Change from base Build 1383071410: 0.01%
Covered Lines: 802
Relevant Lines: 932

💛 - Coveralls
borosko commented 2 years ago

Is there anything else I should do here? Or should I just wait for someone to review and merge?