diff options
author | jackpoz <giacomopoz@gmail.com> | 2014-08-22 16:58:23 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2014-08-22 21:00:56 +0200 |
commit | 5e8277e923c5545a15bae7c740ab6afaa597a59f (patch) | |
tree | 4cf5212c080588a7e868ee60134fc7fff51e400a /dep/g3dlite/include/G3D/Set.h | |
parent | a63aa858dcb400eafb97eed1f590e34c27d934a4 (diff) |
Core/Dependencies: Update G3D to v9.0 r4036
Diffstat (limited to 'dep/g3dlite/include/G3D/Set.h')
-rw-r--r-- | dep/g3dlite/include/G3D/Set.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dep/g3dlite/include/G3D/Set.h b/dep/g3dlite/include/G3D/Set.h index 0ea96b880cf..abad5e44e21 100644 --- a/dep/g3dlite/include/G3D/Set.h +++ b/dep/g3dlite/include/G3D/Set.h @@ -125,8 +125,13 @@ public: return !(*this == other); } + bool isValid() const { + return it.isValid(); + } + + /** @deprecated Use isValid */ bool hasMore() const { - return it.hasMore(); + return it.isValid(); } bool operator==(const Iterator& other) const { |