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 0dd9df4 commit 41f238cCopy full SHA for 41f238c
libcron/include/libcron/CronData.h
@@ -21,6 +21,8 @@ namespace libcron
21
22
CronData(const CronData&) = default;
23
24
+ CronData& operator=(const CronData&) = default;
25
+
26
bool is_valid() const
27
{
28
return valid;
libcron/include/libcron/CronSchedule.h
@@ -25,6 +25,8 @@ namespace libcron
CronSchedule(const CronSchedule&) = default;
+ CronSchedule& operator=(const CronSchedule&) = default;
29
30
std::tuple<bool, std::chrono::system_clock::time_point>
31
calculate_from(const std::chrono::system_clock::time_point& from) const;
32
0 commit comments