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/notion.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/notion.h')
-rw-r--r-- | lib/notion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/notion.h b/lib/notion.h index 4fd3396..69f5cef 100644 --- a/lib/notion.h +++ b/lib/notion.h | |||
@@ -25,7 +25,7 @@ namespace verbly { | |||
25 | 25 | ||
26 | // Accessors | 26 | // Accessors |
27 | 27 | ||
28 | operator bool() const | 28 | bool isValid() const |
29 | { | 29 | { |
30 | return valid_; | 30 | return valid_; |
31 | } | 31 | } |