diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-04-24 16:44:35 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-04-25 10:55:07 +0200 |
commit | fa870e3d4ccd6dfd0a9a8f2c608721a7251114e2 (patch) | |
tree | b952412be2a96f5e7f8e4cb501efe833284c3212 /src/zmq | |
parent | b1c5991eebb916755be188f355ad36fe01a3f529 (diff) |
Remove not needed clang-format off comments
Can be reviewed with --word-diff-regex=. --ignore-all-space
Diffstat (limited to 'src/zmq')
-rw-r--r-- | src/zmq/zmqrpc.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/zmq/zmqrpc.cpp b/src/zmq/zmqrpc.cpp index f9f8b5a9dc..ec6d1cbba3 100644 --- a/src/zmq/zmqrpc.cpp +++ b/src/zmq/zmqrpc.cpp @@ -51,10 +51,8 @@ static RPCHelpMan getzmqnotifications() }; } -const CRPCCommand commands[] = -{ // category actor (function) - // ----------------- ----------------------- - { "zmq", &getzmqnotifications, }, +const CRPCCommand commands[]{ + {"zmq", &getzmqnotifications}, }; } // anonymous namespace |