diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-04-03 10:29:32 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-09 15:45:59 +0700 |
commit | 3ac896af59e969defc59be863971fff40df7b330 (patch) | |
tree | e280a04cce0165a243b426388b5f21d9fa69ed41 /libraries | |
parent | 9fdaf5e5d9ab9935cf24ce7bfe33ec9205833af6 (diff) |
libraries/cppzmq: Remove tabs from README.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/cppzmq/README | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libraries/cppzmq/README b/libraries/cppzmq/README index 51064c48b648..510b5a4abdad 100644 --- a/libraries/cppzmq/README +++ b/libraries/cppzmq/README @@ -1,16 +1,16 @@ cppzmq is a C++ binding for libzmq. It has the following design goals: * cppzmq maps the libzmq C API to C++ concepts. In particular: - - it is type-safe (the libzmq C API exposes various class-like - concepts as void*) - - it provides exception-based error handling (the libzmq C API - provides errno-based error handling) - - it provides RAII-style classes that automate resource management - (the libzmq C API requires the user to take care to free resources - explicitly) + - it is type-safe (the libzmq C API exposes various class-like + concepts as void*) + - it provides exception-based error handling (the libzmq C API + provides errno-based error handling) + - it provides RAII-style classes that automate resource management + (the libzmq C API requires the user to take care to free resources + explicitly) * cppzmq is a light-weight, header-only binding. You only need to - include the header file zmq.hpp (and maybe zmq_addon.hpp) to use it. + include the header file zmq.hpp (and maybe zmq_addon.hpp) to use it. * zmq.hpp is meant to contain direct mappings of the abstractions - provided by the libzmq C API, while zmq_addon.hpp provides additional - higher-level abstractions. + provided by the libzmq C API, while zmq_addon.hpp provides additional + higher-level abstractions. |