diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-02-10 11:24:21 -0500 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-02-10 11:24:21 -0500 |
| commit | 4208387c4a6b7ecf43d756a8bba96b9cfc5227b9 (patch) | |
| tree | 30dc35cbd305f0743ca03cae0509ff315d90a012 /lib/word.h | |
| parent | f1f67e62cebb4144f0599196263cd93b41fa972e (diff) | |
| download | verbly-4208387c4a6b7ecf43d756a8bba96b9cfc5227b9.tar.gz verbly-4208387c4a6b7ecf43d756a8bba96b9cfc5227b9.tar.bz2 verbly-4208387c4a6b7ecf43d756a8bba96b9cfc5227b9.zip | |
Renamed object validity checks
The bool conversion operator was unfortunately Very Confusing so I've just renamed the methods to isValid.
Diffstat (limited to 'lib/word.h')
| -rw-r--r-- | lib/word.h | 2 |
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/word.h b/lib/word.h index a16319d..dd72c39 100644 --- a/lib/word.h +++ b/lib/word.h | |||
| @@ -28,7 +28,7 @@ namespace verbly { | |||
| 28 | 28 | ||
| 29 | // Accessors | 29 | // Accessors |
| 30 | 30 | ||
| 31 | operator bool() const | 31 | bool isValid() const |
| 32 | { | 32 | { |
| 33 | return valid_; | 33 | return valid_; |
| 34 | } | 34 | } |
