allocator support for adaptive_storage, fix for empty tiny_string, more test coverage

This commit is contained in:
hans.dembinski@gmail.com
2017-01-30 17:28:17 +01:00
parent 1cea27fe72
commit 6c87c931e2
14 changed files with 190 additions and 157 deletions

View File

@@ -71,7 +71,7 @@ category_axis_init(python::tuple args, python::dict kwargs) {
if (len(kwargs) > 0) {
PyErr_SetString(PyExc_TypeError, "unknown keyword argument");
throw_error_already_set();
throw_error_already_set();
}
// if (len(args) == 2) {
@@ -128,7 +128,7 @@ axis_repr(const T& t) {
}
template <class T>
struct axis_suite : public python::def_visitor<axis_suite<T> > {
struct axis_suite : public python::def_visitor<axis_suite<T> > {
template <typename Class, typename U>
static