minor fixes to PR #368
diff --git a/include/pybind11/common.h b/include/pybind11/common.h
index ae008ca..8b794f7 100644
--- a/include/pybind11/common.h
+++ b/include/pybind11/common.h
@@ -350,11 +350,7 @@
 PYBIND11_DECL_FMT(double, "d");
 PYBIND11_DECL_FMT(bool, "?");
 
-// Helper class for exposing classes with a private destructor by overriding the deleter object of std::unique_ptr
-template <typename T>
-struct blank_deleter
-{
-    void operator()(T*) {}
-};
+/// Dummy destructor wrapper that can be used to expose classes with a private destructor
+struct nodelete { template <typename T> void operator()(T*) { } };
 
 NAMESPACE_END(pybind11)