Skip to content

Instantly share code, notes, and snippets.

@cocomoff
Created September 30, 2013 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cocomoff/6762725 to your computer and use it in GitHub Desktop.
Save cocomoff/6762725 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <boost/version.hpp>
using namespace std;
int main()
{
cout << ( BOOST_VERSION / 100000 ) << "." << ( BOOST_VERSION / 100 % 1000 ) << "." << BOOST_VERSION % 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment