aboutsummaryrefslogtreecommitdiff
path: root/dep/g3dlite/include/G3D/Set.h
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2014-08-22 16:58:23 +0200
committerjackpoz <giacomopoz@gmail.com>2014-08-22 21:00:56 +0200
commit5e8277e923c5545a15bae7c740ab6afaa597a59f (patch)
tree4cf5212c080588a7e868ee60134fc7fff51e400a /dep/g3dlite/include/G3D/Set.h
parenta63aa858dcb400eafb97eed1f590e34c27d934a4 (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.h7
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 {