Tagged Questions

4
votes
5answers
1k views

How to check for TR1 while compiling?

We are programming a logging library that keeps itself in a .hpp file. We would like to include <tr1/unordered_map> (if the compiler supports TR1,) or the standard <map> otherwise. Is ...