mirror of
https://github.com/Ed94/gencpp.git
synced 2024-12-21 23:34:44 -08:00
Fixed issue with HashTable region detection
This commit is contained in:
parent
ed0c0422ad
commit
31691b1466
@ -235,10 +235,14 @@ int gen_main()
|
||||
bool found = false;
|
||||
|
||||
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);
|
||||
if (found) break;
|
||||
found = swap_pragma_region_implementation( txt("HashTable"), gen_hashtable_base, entry, containers);
|
||||
if (found) {
|
||||
break;
|
||||
}
|
||||
|
||||
containers.append(entry);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user