Skip to content

Commit 58bd93e

Browse files
committed
std::string irep ids must use actual strings
We want comments to start with `#` and not `C_`.
1 parent 7818cad commit 58bd93e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/irep_ids.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ enum class idt:unsigned
4545
#else
4646

4747
#define IREP_ID_ONE(the_id) const std::string ID_##the_id(#the_id);
48-
#define IREP_ID_TWO(the_id, str) const std::string ID_##the_id(#the_id);
48+
# define IREP_ID_TWO(the_id, str) const std::string ID_##the_id(# str);
4949

5050
#endif
5151

0 commit comments

Comments
 (0)