lukelutman / CCSVG

Display SVG images on iOS using Cocos2D
MIT License
58 stars 14 forks source link

Replaced the usage of the format string %08X with %p as required by LLVM 4. #1

Closed colinmccune closed 12 years ago

colinmccune commented 12 years ago

As of LLVM 4 the compiler does not like code which uses the format string %08X to print a pointers address in hex. Instead, the format string %p should be used in its place.