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-01-08 11:50:56 -05:00
2019-07-16 13:35:16 -04:00
2019-07-17 13:38:25 -04:00
2018-10-29 13:46:16 -04:00
2019-08-15 17:34:34 -04:00
2018-11-20 13:29:40 -05:00
2019-09-12 12:10:41 -04:00
2019-09-16 11:47:35 -04:00
2019-01-02 16:51:33 -05:00
2018-11-15 16:11:19 -05:00
2018-11-20 13:30:24 -05:00