diff options
Diffstat (limited to '')
-rw-r--r-- | cpp/sca/kernel/function.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/sca/kernel/function.hpp b/cpp/sca/kernel/function.hpp index 55637f68bf..9492879e5e 100644 --- a/cpp/sca/kernel/function.hpp +++ b/cpp/sca/kernel/function.hpp @@ -139,7 +139,7 @@ public: const lambda& operator=(const lambda& l) { if (this == &l) - return *this; + return *this; callable = l.callable; return *this; } @@ -150,7 +150,7 @@ public: const bool operator==(const lambda& l) const { if (this == &l) - return true; + return true; return callable == l.callable; } |