We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98bfdc3 commit 81cb494Copy full SHA for 81cb494
src/linking/static_lifetime_init.cpp
@@ -64,12 +64,13 @@ void static_lifetime_init(
64
continue;
65
66
// special values
67
- if(identifier==CPROVER_PREFIX "constant_infinity_uint" ||
68
- identifier==CPROVER_PREFIX "memory" ||
69
- identifier=="__func__" ||
70
- identifier=="__FUNCTION__" ||
71
- identifier=="__PRETTY_FUNCTION__")
+ if(
+ identifier == CPROVER_PREFIX "constant_infinity_uint" ||
+ identifier == CPROVER_PREFIX "memory" || identifier == "__func__" ||
+ identifier == "__FUNCTION__" || identifier == "__PRETTY_FUNCTION__")
+ {
72
73
+ }
74
75
// just for linking
76
if(has_prefix(id, CPROVER_PREFIX "architecture_"))
0 commit comments