Unbreak with boost 1.68
In file included from src/main.cc:34:
In file included from src/global.h:41:
In file included from src/option.h:45:
In file included from src/scope.h:45:
In file included from src/op.h:45:
In file included from src/expr.h:45:
In file included from src/exprbase.h:57:
src/utils.h:47:10: fatal error: 'boost/uuid/sha1.hpp' file not found
#include <boost/uuid/sha1.hpp>
^
This commit is contained in:
parent
6abbb00436
commit
c18a55f9ef
1 changed files with 4 additions and 0 deletions
|
|
@ -44,7 +44,11 @@
|
|||
#ifndef _UTILS_H
|
||||
#define _UTILS_H
|
||||
|
||||
#if (BOOST_VERSION >= 106600)
|
||||
#include <boost/uuid/detail/sha1.hpp>
|
||||
#else
|
||||
#include <boost/uuid/sha1.hpp>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Default values
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue