You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
compilation failure
error: reference to 'mutex' is ambiguous note: candidates are: 'class boost::mutex' note: 'class std::mutex'
This commit is contained in:
@@ -43,14 +43,14 @@ namespace startup
|
||||
{
|
||||
|
||||
/* static */
|
||||
mutex StartUp::fTmpDirLock;
|
||||
boost::mutex StartUp::fTmpDirLock;
|
||||
/* static */
|
||||
string* StartUp::fTmpDirp = 0;
|
||||
|
||||
/* static */
|
||||
const string StartUp::tmpDir()
|
||||
{
|
||||
mutex::scoped_lock lk(fTmpDirLock);
|
||||
boost::mutex::scoped_lock lk(fTmpDirLock);
|
||||
|
||||
if (fTmpDirp)
|
||||
return *fTmpDirp;
|
||||
|
||||
Reference in New Issue
Block a user