mirror of
https://github.com/Ed94/gencpp.git
synced 2025-07-08 22:55:45 -07:00
Fixed issue with HashTable region detection
This commit is contained in:
@ -235,10 +235,14 @@ int gen_main()
|
|||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
found = swap_pragma_region_implementation( txt("Array"), gen_array_base, entry, containers);
|
found = swap_pragma_region_implementation( txt("Array"), gen_array_base, entry, containers);
|
||||||
if (found) break;
|
if (found) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
found = swap_pragma_region_implementation( txt("Hashtable"), gen_hashtable_base, entry, containers);
|
found = swap_pragma_region_implementation( txt("HashTable"), gen_hashtable_base, entry, containers);
|
||||||
if (found) break;
|
if (found) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
containers.append(entry);
|
containers.append(entry);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user