aboutsummaryrefslogtreecommitdiff
path: root/Lib/php/std_map.i
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/php/std_map.i')
-rw-r--r--Lib/php/std_map.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/php/std_map.i b/Lib/php/std_map.i
index cfb82f44c..b6b417da7 100644
--- a/Lib/php/std_map.i
+++ b/Lib/php/std_map.i
@@ -29,7 +29,7 @@ namespace std {
unsigned int size() const;
void clear();
%extend {
- T& get(const K& key) throw (std::out_of_range) {
+ const T& get(const K& key) throw (std::out_of_range) {
std::map<K,T >::iterator i = self->find(key);
if (i != self->end())
return i->second;