Skip to content

Commit

Permalink
std::string irep ids must use actual strings
Browse files Browse the repository at this point in the history
We want comments to start with `#` and not `C_`.
  • Loading branch information
tautschnig committed Nov 15, 2023
1 parent 4b7b25f commit 2f3f767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/irep_ids.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ enum class idt:unsigned
#else

#define IREP_ID_ONE(the_id) const std::string ID_##the_id(#the_id);
#define IREP_ID_TWO(the_id, str) const std::string ID_##the_id(#the_id);
# define IREP_ID_TWO(the_id, str) const std::string ID_##the_id(# str);

#endif

Expand Down

0 comments on commit 2f3f767

Please sign in to comment.