tgockel / zookeeper-cpp

A ZooKeeper client for C++.
http://tgockel.github.io/zookeeper-cpp/
Apache License 2.0
148 stars 40 forks source link

core: Mark most result types as default-movable and copyable #124

Closed tgockel closed 3 years ago

tgockel commented 3 years ago

This change explicitly marks most of the move- and copy- constructors and assignment operators as = default. This makes them nothrow by default definition, which is enforced with static_asserts on the types.

Fixes issue #123