summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-generics.patch')
-rw-r--r--dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-generics.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-generics.patch b/dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-generics.patch
new file mode 100644
index 000000000000..2227fa1b89cd
--- /dev/null
+++ b/dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-generics.patch
@@ -0,0 +1,11 @@
+--- tuprolog.orig/src/alice/tuprologx/pj/test/AnotherList.java 2010-01-21 21:29:48.000000000 +1300
++++ tuprolog/src/alice/tuprologx/pj/test/AnotherList.java 2010-11-06 12:39:28.000000000 +1300
+@@ -47,7 +47,7 @@
+ AnotherList lists = PJ.newInstance(AnotherList.class);
+ List<Int> l=lists.nil(); // Creating an empty list []
+ for (int i=10;i>0;i--){
+- l=lists.add(new Int(i),l); // Adding elements...[1,2,3,4,5,6,7,8,9,10]
++ l=lists.<Int,List<Int>,List<Int>>add(new Int(i),l); // Adding elements...[1,2,3,4,5,6,7,8,9,10]
+ }
+ Var<List<Int>> l1 = new Var<List<Int>>("X");
+ Var<List<Int>> l2 = new Var<List<Int>>("Y");