[primitives,test] use same parameter names
use the same parameter names for declaration and implementation
This commit is contained in:
parent
993756e575
commit
3682e11e55
@ -80,9 +80,9 @@ void prim_test_setup(BOOL performance)
|
||||
}
|
||||
|
||||
BOOL speed_test(const char* name, const char* dsc, UINT32 iterations, speed_test_fkt generic,
|
||||
speed_test_fkt optimised, ...)
|
||||
speed_test_fkt optimized, ...)
|
||||
{
|
||||
if (!name || !generic || !optimised || (iterations == 0))
|
||||
if (!name || !generic || !optimized || (iterations == 0))
|
||||
return FALSE;
|
||||
|
||||
for (UINT32 i = 0; i < iterations; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user