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 fb3e2c1 commit 850e566Copy full SHA for 850e566
.github/workflows/ci.yml
@@ -201,7 +201,7 @@ jobs:
201
// NOTE: `test-speedcenter` currently seems to be broken on `ubuntu-latest`
202
"test-speedcenter": large && level >= 2,
203
// made explicit until it can be assumed to have propagated to PRs
204
- "CMAKE_OPTIONS": "-DUSE_LAKE=ON",
+ "CMAKE_OPTIONS": "-DUSE_LAKE=ON -DLEAN_EXTRA_CXX_FLAGS=-Werror",
205
},
206
{
207
"name": "Linux Reldebug",
src/util/timeit.h
@@ -69,6 +69,7 @@ class xtimeit {
69
m_start = std::move(other.m_start);
70
m_fn = std::move(other.m_fn); // TODO: use `std::exchange(_, nullptr)` in C++14
71
other.m_fn = nullptr;
72
+ return *this;
73
}
74
~xtimeit() {
75
if (!m_fn) return;
0 commit comments