mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-10-18 11:39:03 +02:00
Problem: whitespace style too restrictive.
For header only library like cppzmq, whitespace style inherited from libzmq is too restrictive. Solution: relaxing whitespace before parens from always to in control statements only, increased max column width from 80 to 85 and removing requirement of whitespace after template keyword.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include <zmq.hpp>
|
||||
|
||||
int main (int argc, char **argv)
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
zmq::context_t context;
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user