ZongXian Shen
ZongXian Shen
Appreciate for the bug report ! Could you patch the compilation flag: ``` LOCAL_LDFLAGS += -fPIC ``` in `/engine/Android.mk` and try again? In my environment, it can work with the...
If the previous configuration does not work, could you switch to this flag and try again? ``` LOCAL_DISABLE_FATAL_LINKER_WARNINGS = true ```
Currently the assembly code in engine/arch/x86 is not written as "Position Independent" style. Though we can turn off the warning with some aggressive flags, it is still not a super...
Hi Rocco, I reduce the error return code and put the status in Linux `errno`. Thus users do not have to care about the container status for each operation. But...
Hi Rocco, The listed APIs are frequently used map operations. Any ideas to enrich them? And you're right. The quality of hash based containers are highly related to the mathematical...
Thanks for the bug report :+1 :P : I found the bug in the function `_HashMapReHash`. At hash_map.c line 380, the statement to calculate hash value should be: ``` C...
Feel free to let me know if there is something to improve. :) Glad to get the feedback from the developers. Regards, ZongXian.
Hi rocco, Sorry for my delayed response! For the issue of C++ reserved word, I decide to rename those related container interfaces. That is, `delete` or `XXXDelete` is now changed...
Hi rocco, I understand the dilemma for developers to use the map containers. It is really annoying to allocate a `pair` before map manipulation. Also, the issue to provide key...
Hi rocco, Sure, libcds needs your help for quality enhancement. I really hope that it can become a practical utility. The usage patterns such as frequently used operations or integration...