In gbx, source file gbc_value.c 
572: __p2s:
573:    #if OS_64BITS
574:            value->_long.value = (int64_t)(intptr_t)value->_pointer.value;
575:            goto __l2s;
576:    #else
577:            value->_int.value = (int)(intptr_t)value->_pointer.value;
578:            goto __i2s;
579:    #endif

Compile error occurs at line 577. Sorry I lost the error message.

I believe it should be 
577:    value->_integer.value = (int)(intptr_t)value->_pointer.value;

Bruce


------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122912
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to