mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-10-31 06:50:53 -07:00 
			
		
		
		
	Fixed issue with HashTable region detection
This commit is contained in:
		| @@ -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); | ||||
| 				} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user