Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/threads into 
lp:zorba.

Commit message:
More multi-threading work:
1. Function objects for builtin functions should not use any non-builtin types 
in their signature.
2. XQType does not inherit from RCObject anymore; instead it replicates 
RCObject functionalityinternally 


Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/threads/+merge/186514

More multi-threading work:
1. Function objects for builtin functions should not use any non-builtin types 
in their signature.
2. XQType does not inherit from RCObject anymore; instead it replicates 
RCObject functionalityinternally 
-- 
https://code.launchpad.net/~zorba-coders/zorba/threads/+merge/186514
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/compiler/expression/expr_type.cpp'
--- src/compiler/expression/expr_type.cpp	2013-08-16 13:00:06 +0000
+++ src/compiler/expression/expr_type.cpp	2013-09-19 12:07:27 +0000
@@ -675,7 +675,7 @@
       for (csize i = 0; i < fiExpr->get_function()->getSignature().paramCount(); ++i)
         paramTypes.push_back(fiExpr->get_function()->getSignature()[i]);
 
-      theType = new FunctionXQType(&rtm, paramTypes, retType, TypeConstants::QUANT_ONE);
+      theType = rtm.create_function_type(paramTypes, retType, TypeConstants::QUANT_ONE);
     }
     return;
   }

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to     : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp

Reply via email to