mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-08-05 21:33:58 +00:00
removed printf parameter to avoid Clang warning
This commit is contained in:
parent
03fea84acb
commit
4ff3593ce8
@ -362,7 +362,7 @@ int main() {
|
|||||||
|
|
||||||
printf("hashcode hashval = 0x%x;\n\n", hashval);
|
printf("hashcode hashval = 0x%x;\n\n", hashval);
|
||||||
|
|
||||||
printf("sentence all_sentences[] = {\n", size(allsent));
|
printf("sentence all_sentences[] = {\n");
|
||||||
|
|
||||||
for(map<hashcode,string>::iterator it = ms.begin(); it != ms.end(); it++) {
|
for(map<hashcode,string>::iterator it = ms.begin(); it != ms.end(); it++) {
|
||||||
string s = it->second;
|
string s = it->second;
|
||||||
@ -374,7 +374,7 @@ int main() {
|
|||||||
}
|
}
|
||||||
printf(" };\n\n");
|
printf(" };\n\n");
|
||||||
|
|
||||||
printf("fullnoun all_nouns[] = {\n", size(allnouns));
|
printf("fullnoun all_nouns[] = {\n");
|
||||||
|
|
||||||
for(map<hashcode,string>::iterator it = mn.begin(); it != mn.end(); it++) {
|
for(map<hashcode,string>::iterator it = mn.begin(); it != mn.end(); it++) {
|
||||||
string s = it->second;
|
string s = it->second;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user