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 0552810 commit ef3f4c9Copy full SHA for ef3f4c9
src/common/model/source_file.cc
@@ -31,6 +31,7 @@ std::string to_string(source_file_t sf)
31
return "implementation";
32
default:
33
assert(false);
34
+ return "";
35
}
36
37
src/common/model/template_parameter.cc
@@ -37,7 +37,8 @@ std::string to_string(template_parameter_kind_t k)
case template_parameter_kind_t::concept_constraint:
38
return "concept_constraint";
39
40
- assert(0);
+ assert(false);
41
42
43
44
0 commit comments