Files
googletest/googlemock/test
Krystian Kuzniarek e0d16aa336 remove GTEST_ARRAY_SIZE_
This macro didn't work when an array was passed to a function by pointer,
in which case the information about its size was lost.
Better alternatives are:
* std::extent<T>::value (compile-time)
* std::array<T, N>::size() (compile-time)
* std::distance(std::begin(array), std::end(array)) (run-time)
2019-09-23 19:31:06 +02:00
..
2019-08-15 17:34:34 -04:00
2019-09-12 12:10:41 -04:00
2019-09-16 11:47:35 -04:00