mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-22 04:06:18 +00:00
. split up lib.h/.cpp, include the remnants from PCH, remove (pretty much universal) include of it.
. timer, config: fix definition of ALLOW_RDTSC . add movsx_be64 (for whirlpool), revise implementation, move to byte_order, add test . MAX -> std::max, remove those macros . add timestamp to system_info as requested by philip This was SVN commit r5050.
This commit is contained in:
@@ -18,7 +18,7 @@ static uint suballoc_refs; // initialized in suballoc_attach
|
||||
void jscomplexproperty_suballoc_attach()
|
||||
{
|
||||
ONCE(\
|
||||
size_t el_size = MAX(sizeof(CJSValComplexProperty), sizeof(CJSComplexProperty<int, true>));\
|
||||
size_t el_size = std::max(sizeof(CJSValComplexProperty), sizeof(CJSComplexProperty<int, true>));\
|
||||
(void)bucket_create(&bucket, el_size);\
|
||||
suballoc_refs = 0;\
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user