Avoid overflow of "int" in the "MallocerFrrer"
1)Type of arguments for size of array is modified to size_t from int 2)To avoid overflow, way to calculate "requiredMalloc" is modified to
double requiredMalloc = static_cast<double>(size1); *static_cast<double>(size2); *static_cast<double>(sizeof(T));
3)To check the amount of allocated heap in more detail, variables for address should be counted in the "requiredMalloc"
Fixed at r1117. Then MallocerFreer is refactored at r1118.
1)Type of arguments for size of array is modified to size_t from int
2)To avoid overflow, way to calculate "requiredMalloc" is modified to
3)To check the amount of allocated heap in more detail, variables for address should be counted in the "requiredMalloc"