Cleanup: use term init instead of initialize/initialise

The abbreviation 'init' is brief, unambiguous and already used
in thousands of places, also initialize is often accidentally
written with British spelling.
This commit is contained in:
Campbell Barton
2020-08-01 13:02:21 +10:00
parent 006e850a84
commit 901ee66ea1
111 changed files with 276 additions and 277 deletions

View File

@@ -213,7 +213,7 @@ extern const char *(*MEM_name_ptr)(void *vmemh);
/** This should be called as early as possible in the program. When it has been called, information
* about memory leaks will be printed on exit. */
void MEM_initialize_memleak_detection(void);
void MEM_init_memleak_detection(void);
/* Switch allocator to slower but fully guarded mode. */
void MEM_use_guarded_allocator(void);

View File

@@ -46,7 +46,7 @@ class MemLeakPrinter {
};
} // namespace
void MEM_initialize_memleak_detection(void)
void MEM_init_memleak_detection(void)
{
/**
* This variable is constructed when this function is first called. This should happen as soon as