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 37055b1 commit 5c4cea9Copy full SHA for 5c4cea9
include/reactor-cpp/action.hh
@@ -153,8 +153,15 @@ public:
153
154
class Timer : public BaseAction {
155
protected:
156
+#if __has_warning("-Wcppcoreguidelines-non-private-member-variables-in-classes")
157
+#pragma clang diagnostic push
158
+#pragma clang diagnostic ignored "-Wcppcoreguidelines-non-private-member-variables-in-classes"
159
+#endif
160
Duration offset_{0};
161
Duration period_{0};
162
163
+#pragma clang diagnostic pop
164
165
166
void cleanup() noexcept final;
167
0 commit comments