Commit 467b07d
🐛 Fix std includes for
Problem:
- GTest.h uses constructs from `std::` without including them; in later versions
of GoogleTest they are not necessarily transitively included.
Solution:
- Add includes for:
- `iomanip` (`std::left`, `std::setw`)
- `iostream` (`std::cout`, `std::endl`)
- `tuple` (`std::tie`)
- `type_traits` (various e.g. `std::is_same`)GTest.h
1 parent 9872bc3 commit 467b07d
1 file changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
13 | 15 | | |
14 | 16 | | |
| 17 | + | |
| 18 | + | |
15 | 19 | | |
16 | 20 | | |
17 | 21 | | |
| |||
0 commit comments