diff options
| author | Răzvan Cosmin Rădulescu | 2016-08-27 17:33:45 +0200 |
|---|---|---|
| committer | Răzvan Cosmin Rădulescu | 2016-09-11 17:37:21 +0200 |
| commit | 1a7aae7443194f7d6137901af369c843b3911b4f (patch) | |
| tree | e9ccf4f9a80590d6e27966536770f59fddb76628 /core/array.h | |
| parent | c40ab446c9bcd5b28a073fea4113794bb701937b (diff) | |
| download | godot-1a7aae7443194f7d6137901af369c843b3911b4f.tar.gz godot-1a7aae7443194f7d6137901af369c843b3911b4f.tar.zst godot-1a7aae7443194f7d6137901af369c843b3911b4f.zip | |
Diffstat (limited to 'core/array.h')
| -rw-r--r-- | core/array.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/array.h b/core/array.h index dfc902525..eb79b0cf3 100644 --- a/core/array.h +++ b/core/array.h @@ -80,8 +80,8 @@ public: void erase(const Variant& p_value); void push_front(const Variant& p_value); - void pop_back(); - void pop_front(); + Variant pop_back(); + Variant pop_front(); Array(const Array& p_from); Array(bool p_shared=false); |
