Reputation: 13155
My compiler supports C++03. Which version of boost should I therefore use? If I was using an earlier version of C++, how would I establish the boost version?
Upvotes: 2
Views: 502
Reputation: 15085
Every boost version has its "tested compilers" list (scroll this page to the end). This is the place where you should check whether your compiler version is supported or not.
Upvotes: 1
Reputation: 133112
Whichever. Boost libraries are smart enough to detect your C++ version and compiler and with some preprocessor magic provide implementations that will work with it. So you could as well use the latest version which has more bugs fixed and broader functionality.
Upvotes: 8