summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2021-09-10 16:24:59 -0300
committerGitHub <noreply@github.com>2021-09-10 16:24:59 -0300
commit6679790facfc039891384c9e3f98b2b3a51f6367 (patch)
tree84a4f6503d4cf38aed30f168d88ac001dcc59678 /core
parentc30cffe1b0fa1e87c7b28139ee4765851f5d3398 (diff)
parentf5d9c7b487166562a833fc86363d78468d711070 (diff)
Merge pull request #52406 from ellenhp/libvorbis
Replace stb_vorbis with libvorbis
Diffstat (limited to 'core')
-rw-r--r--core/templates/vector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/vector.h b/core/templates/vector.h
index 033345d04c..2600604eb7 100644
--- a/core/templates/vector.h
+++ b/core/templates/vector.h
@@ -92,7 +92,7 @@ public:
void append_array(Vector<T> p_other);
- bool has(const T &p_val) {
+ bool has(const T &p_val) const {
return find(p_val, 0) != -1;
}