Skip to content

Instantly share code, notes, and snippets.

@tinybike
Created April 21, 2015 08:56
Show Gist options
  • Save tinybike/83a4228924de4ed3d00e to your computer and use it in GitHub Desktop.
Save tinybike/83a4228924de4ed3d00e to your computer and use it in GitHub Desktop.
check boost version
#include <cstdio>
#include <boost/version.hpp>
int main()
{
printf("Boost version: %d.%d.%d\n", BOOST_VERSION / 100000,
BOOST_VERSION / 100 % 1000,
BOOST_VERSION % 100);
return 0;
}
@LeeRuns
Copy link

LeeRuns commented Aug 2, 2018

thank YOU!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment