Skip to content

Instantly share code, notes, and snippets.

@AALEKH
Created July 18, 2016 10:50
Show Gist options
  • Select an option

  • Save AALEKH/ee4eb2f6d74955167215ae133d0bc034 to your computer and use it in GitHub Desktop.

Select an option

Save AALEKH/ee4eb2f6d74955167215ae133d0bc034 to your computer and use it in GitHub Desktop.
boost.cpp
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