Created
July 18, 2016 10:50
-
-
Save AALEKH/ee4eb2f6d74955167215ae133d0bc034 to your computer and use it in GitHub Desktop.
boost.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 #include <boost/version.hpp> | |
| 2 #include <iostream> | |
| 3 #include <iomanip> | |
| 4 | |
| 5 int main() | |
| 6 { | |
| 7 std::cout << "Boost version: " | |
| 8 << BOOST_VERSION / 100000 | |
| 9 << "." | |
| 10 << BOOST_VERSION / 100 % 1000 | |
| 11 << "." | |
| 12 << BOOST_VERSION % 100 | |
| 13 << std::endl; | |
| 14 return 0; | |
| 15 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment