From 5ac4afa5b8cc805f1cde6f237f5e5b2ec98e9a03 Mon Sep 17 00:00:00 2001 From: chrchr-github <78114321+chrchr-github@users.noreply.github.com> Date: Wed, 13 Apr 2022 12:23:38 +0200 Subject: [PATCH] Fix cppcheckError with spaceship operator (#10251) (#4001) * Fix cppcheckError with starship operator (#10251) * Fix test case * Return result --- lib/calculate.h | 2 ++ test/testvalueflow.cpp | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/lib/calculate.h b/lib/calculate.h index 084285c67..663d2939a 100644 --- a/lib/calculate.h +++ b/lib/calculate.h @@ -111,6 +111,8 @@ R calculate(const std::string& s, const T& x, const T& y, bool* error = nullptr) return wrap(x >= y); case '<=': return wrap(x <= y); + case '<=>': + return wrap(x - y); } throw InternalError(nullptr, "Unknown operator: " + s); } diff --git a/test/testvalueflow.cpp b/test/testvalueflow.cpp index fcb732f04..1d910a880 100644 --- a/test/testvalueflow.cpp +++ b/test/testvalueflow.cpp @@ -1075,6 +1075,13 @@ private: ASSERT_EQUALS(22, values.back().intvalue); } + // #10251 starship operator + code = "struct X {};\n" + "auto operator<=>(const X & a, const X & b) -> decltype(1 <=> 2) {\n" + " return std::strong_ordering::less;\n" + "}\n"; + tokenValues(code, "<=>"); // don't throw + // Comparison of string values = removeImpossible(tokenValues("f(\"xyz\" == \"xyz\");", "==")); // implementation defined ASSERT_EQUALS(0U, values.size()); // <- no value