Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing type data_ to size_t which is more of concrete type because
1. If lib is cross-compiled for win32 using MXE environment it cause compilation error -Wconversion on line 730 as sizeof(unsigned long) = 4 and sizeof(size_t) = 8 2. When lib is compiled on Unix like compiler generate error -Wuseless-cast if static_cast is used to fix issue in 1 Futher if size_t is not concrete type then, type data_ can be changed to uint64_t or uint32_t because those have same sizes across all platforms
- Loading branch information