Skip to content
Snippets Groups Projects
Commit e09ce6db authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Rephrase comments

parent 547eb068
No related branches found
No related tags found
1 merge request!37Feature/language
......@@ -19,7 +19,7 @@ class IfProcessor final : public INodeProcessor
if constexpr (std::is_arithmetic_v<T>) {
return value;
} else {
return false; // LCOV_EXCL_LINE (only there for compilation purpose unreachable)
return false; // LCOV_EXCL_LINE (unreachable: only there for compilation purpose)
}
},
m_node.children[0]->m_value));
......
......@@ -21,7 +21,7 @@ class WhileProcessor final : public INodeProcessor
if constexpr (std::is_arithmetic_v<T>) {
return value;
} else {
return false; // LCOV_EXCL_LINE (only there for compilation purpose unreachable)
return false; // LCOV_EXCL_LINE (unreachable: only there for compilation purpose)
}
},
m_node.children[0]->m_value));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment