Changes between Version 2 and Version 3 of pjsua2/SWIG_Quirks


Ignore:
Timestamp:
Jul 23, 2012 3:11:08 AM (12 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pjsua2/SWIG_Quirks

    v2 v3  
    103103   }}} 
    104104 
     105=== No pass by reference === #byref 
     106Continue reading below. 
    105107=== "const" in parameter matters === 
    106 Continue reading below. 
    107 === No pass by reference === #byref 
    108108 
    109109Otherwise conversion from Python list to std::vector doesn't work. E.g.: 
     
    123123a.func_b( [0, 1, 2] )        # <-- ERROR 
    124124 }}} 
     125 
     126 
    125127 
    126128=== Must use exception specification in C++ functions ===