diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/generic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/generic.h b/python/generic.h index 97806e17..7dc89ca6 100644 --- a/python/generic.h +++ b/python/generic.h @@ -306,8 +306,8 @@ public: return path; } - void operator=(const char *path) { - this->path = path; + const char *operator=(const char *path) { + return this->path = path; } }; |
