summaryrefslogtreecommitdiff
path: root/vala/valacodecontext.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2020-05-07 20:58:36 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2020-05-08 13:19:48 +0200
commit0d59dcc8f72431a26af15c7465bf296276ee7171 (patch)
tree5a045a172fdd9b4e0651a64069ca8d97d4204ce0 /vala/valacodecontext.vala
parent2afaae5e0755b2d8619808d2d148761b92c355b5 (diff)
downloadvala-0d59dcc8f72431a26af15c7465bf296276ee7171.tar.gz
Use "str_equal" as equal_func for ArrayList<string> instances
Diffstat (limited to 'vala/valacodecontext.vala')
-rw-r--r--vala/valacodecontext.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valacodecontext.vala b/vala/valacodecontext.vala
index 6001c901a..6b6665274 100644
--- a/vala/valacodecontext.vala
+++ b/vala/valacodecontext.vala
@@ -205,7 +205,7 @@ public class Vala.CodeContext {
private List<SourceFile> source_files = new ArrayList<SourceFile> ();
private Map<string,unowned SourceFile> source_files_map = new HashMap<string,unowned SourceFile> (str_hash, str_equal);
- private List<string> c_source_files = new ArrayList<string> ();
+ private List<string> c_source_files = new ArrayList<string> (str_equal);
private Namespace _root = new Namespace (null);
private List<string> packages = new ArrayList<string> (str_equal);