summary refs log tree commit diff stats
path: root/lib/form.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-02-10 11:24:21 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-02-10 11:24:21 -0500
commit4208387c4a6b7ecf43d756a8bba96b9cfc5227b9 (patch)
tree30dc35cbd305f0743ca03cae0509ff315d90a012 /lib/form.h
parentf1f67e62cebb4144f0599196263cd93b41fa972e (diff)
downloadverbly-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/form.h')
-rw-r--r--lib/form.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/form.h b/lib/form.h index fe0886c..f501ed2 100644 --- a/lib/form.h +++ b/lib/form.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 }