use short names wherever CHAZ_USE_SHORT_NAMES is in effect
----------------------------------------------------------
Key: LUCY-72
URL: https://issues.apache.org/jira/browse/LUCY-72
Project: Lucy
Issue Type: Task
Components: Charmonizer
Reporter: Peter Karman
Function names in .c files always use "short names"
whenever the "LUCY_USE_SHORT_NAMES" macro is in effect -- e.g. we use
"Sort_mergesort" rather than "lucy_Sort_mergesort".
Within Charmonizer, we should be consistent about using short names
everywhere the "CHAZ_USE_SHORT_NAMES" macro is in effect, but currently
there are lots of places that we don't -- e.g. we use "chaz_Test_plan"
rather than "Test_plan" within charmonizer/src/Charmonizer/Test.charm:
void
-chaz_Test_plan(TestBatch *batch)
+Test_plan(TestBatch *batch)
{
printf("1..%u\n", batch->num_tests);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.