From 239b177815dbcbd304ce46d4ccb4cb9c433cdcc4 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 28 Oct 2000 21:29:49 +0000 Subject: [PATCH] add missing const qualifier. [SVN r8045] --- functions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.h b/functions.h index 4537acc1..908bfe33 100644 --- a/functions.h +++ b/functions.h @@ -91,7 +91,7 @@ class BoundFunction : public PythonObject BoundFunction(Ptr target, Ptr fn); PyObject* call(PyObject*args, PyObject* keywords) const; - PyObject* getattr(const char* name); + PyObject* getattr(const char* name) const; private: struct TypeObject;