| 914 | } |
| 915 | |
| 916 | void String::fromPointer(const void *p) |
| 917 | { |
| 918 | char buf[128]; |
| 919 | SPRINTF(buf,128,"Native(%p)",p); |
| 920 | __s = GCStringDup(buf,-1,&length); |
| 921 | } |
| 922 | |
| 923 | #ifdef HX_SMART_STRINGS |
| 924 | #define ADD_HASH(X) \ |
nothing calls this directly
no test coverage detected