"example/example-constants-and-functions.cpp" did not exist on "bf0c7dcc2264317c5e741a00a4fa78b8e12d24cf"
Commit dffe869d authored by Thomas Peters's avatar Thomas Peters Committed by Wenzel Jakob
Browse files

quiet clang warning by adding default move ctor (#1821)

parent a301c5ad
...@@ -64,6 +64,8 @@ public: ...@@ -64,6 +64,8 @@ public:
setp(d_buffer.get(), d_buffer.get() + buf_size - 1); setp(d_buffer.get(), d_buffer.get() + buf_size - 1);
} }
pythonbuf(pythonbuf&&) = default;
/// Sync before destroy /// Sync before destroy
~pythonbuf() { ~pythonbuf() {
sync(); sync();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment