Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-07-31 18:21:28 +0000
committerStijn Buys <ingar@osirion.org>2011-07-31 18:21:28 +0000
commit5a464fca4618af9eeb0fe3f2c43d148fb194a015 (patch)
tree09d3e891ce6f315e6231b36edd0ae8084b2f875e /src/core/zone.h
parent9652995287be63ecc34de9bf2174b3f22435861d (diff)
Improved constness of core::Zone::find_entity
Diffstat (limited to 'src/core/zone.h')
-rw-r--r--src/core/zone.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/zone.h b/src/core/zone.h
index d2cdf2c..f80999d 100644
--- a/src/core/zone.h
+++ b/src/core/zone.h
@@ -97,7 +97,7 @@ public:
}
/// find an entity inside a zone
- Entity *find_entity(Entity *entity);
+ Entity *find_entity(const Entity *entity);
/// find an entity inside a zone
Entity *find_entity(unsigned int id);