From cc4e4065b37967929453a15dfb9ac11f3422b54b Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Mon, 5 Sep 2016 08:25:10 +0900 Subject: [PATCH] .. and another one --- include/pybind11/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/common.h b/include/pybind11/common.h index 6e079e46..762a1e09 100644 --- a/include/pybind11/common.h +++ b/include/pybind11/common.h @@ -242,7 +242,7 @@ struct buffer_info { (*this) = std::move(other); } - buffer_info& operator=(buffer_info &&rhs){ + buffer_info& operator=(buffer_info &&rhs) { ptr = rhs.ptr; itemsize = rhs.itemsize; size = rhs.size;