What's the point to be able to convert pointers to strings (take the
numerical value of the pointer)?
If I would like a string representation of a pointer I would at least want
it in hexadecimal form.
But I also think most people that convert pointers to strings want to get
the string out of a char* that points to a NULL-terminated string.

/Emil

2012/12/30 Bruce <bbr...@paddys-hill.net>

> 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
>
------------------------------------------------------------------------------
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. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_123012
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to