Both header files I used, but I did not find any difference, then why they are seperated?
Asked
Active
Viewed 239 times
2
-
12FWIW, don't use either. Only include the exact headers that you need, not a catch all. – NathanOliver Aug 12 '19 at 12:44
-
9Doesn't matter. They are internal files that you simply shouldn't include yourself. Also see [Why should I not #include
?](https://stackoverflow.com/questions/31816095/why-should-i-not-include-bits-stdc-h) – Some programmer dude Aug 12 '19 at 12:45 -
3I would guess the TR version also includes proposed ([experimental](https://en.cppreference.com/w/cpp/experimental)) functionality. – rustyx Aug 12 '19 at 12:49
-
2"_I did not find any difference_" - in my g++ installation there's a huge difference. The `tr1` version includes `tr1` versions of a lot of standard headers instead of the usual ones etc. And it can't be repeated enough: Don't use any of the two. – Ted Lyngmo Aug 12 '19 at 12:59