Skip to content

Commit

Permalink
boost/uuid/sha1.hpp is deprecated since boost 1.66
Browse files Browse the repository at this point in the history
  • Loading branch information
ddemidov committed Feb 1, 2018
1 parent 0fc8de7 commit 07828a5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vexcl/backend/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ THE SOFTWARE.
#include <sstream>
#include <iomanip>
#include <cstdlib>
#include <boost/uuid/sha1.hpp>

#include <boost/version.hpp>
#if BOOST_VERSION >= 106600
# include <boost/uuid/detail/sha1.hpp>
#else
# include <boost/uuid/sha1.hpp>
#endif
#include <boost/optional.hpp>
#include <boost/filesystem.hpp>
#include <boost/thread.hpp>
Expand Down

0 comments on commit 07828a5

Please sign in to comment.