2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

add missing const qualifier.

[SVN r8045]
This commit is contained in:
Dave Abrahams
2000-10-28 21:29:49 +00:00
parent ced23849a2
commit 239b177815

View File

@@ -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;