diff options
| author | 2010-08-30 15:20:58 +0000 | |
|---|---|---|
| committer | 2010-08-30 15:20:58 +0000 | |
| commit | 0e672ba6eb824654dc4b3d859f0a544108bf65bd (patch) | |
| tree | f1b271649fbdd9a20664222ed3c00537b989c432 /src/lib | |
| parent | 52482340042fda882cfe1db3733169ed18f8ebb5 (diff) | |
Cleanups and version bump.mame0139u2
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util/astring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/astring.h b/src/lib/util/astring.h index c83011a098f..8e18771781f 100644 --- a/src/lib/util/astring.h +++ b/src/lib/util/astring.h @@ -316,7 +316,7 @@ public: astring &operator=(const char *string) { return cpy(string); } astring &operator=(const astring &string) { return cpy(string); } - + bool operator==(const char *string) const { return (cmp(string) == 0); } bool operator==(const astring &string) const { return (cmp(string) == 0); } bool operator!=(const char *string) const { return (cmp(string) != 0); } |
