We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8591f1d commit 5c2baceCopy full SHA for 5c2bace
.github/workflows/ci.yml
@@ -42,8 +42,6 @@ jobs:
42
else
43
sudo apt-get update
44
sudo apt-get install -y ninja-build
45
- #check clang version
46
- which clang && clang --version || echo "no clang"
47
fi
48
49
sudo python3 -m pip install --upgrade pip
core/storage/leveldb/leveldb.cpp
@@ -20,8 +20,7 @@ namespace fc::storage {
20
if (status.ok()) {
21
auto l = std::make_unique<LevelDB>();
22
l->db_ = std::unique_ptr<leveldb::DB>(db);
23
-// return l;
24
- return std::move(l);
+ return std::move(l); // clang 6.0.1 issue
25
}
26
27
return error_as_result<std::unique_ptr<LevelDB>>(status);
0 commit comments