Changeset 492:dab2c27794cc in verona


Ignore:
Timestamp:
May 25, 2012 5:28:33 PM (12 months ago)
Author:
Vadim Lebedev <vadim@…>
Branch:
default
Message:

fix syntax error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • swig/verona.i

    r491 r492  
    8484   jint len = jenv->GetStringUTFLength(jst); 
    8585   jint jlen = jenv->GetStringLength(jst); 
    86    st.capacity(len); 
     86   st.capacity((size_t)len); 
    8787   jenv->GetStringUTFRegion(jst, 0, jlen, (char*) st.data()); 
    88    st.resize(len);       
     88   st.resize((size_t)len);       
    8989 
    9090} 
Note: See TracChangeset for help on using the changeset viewer.