mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-10-29 14:00:52 -07:00 
			
		
		
		
	gencpp : General refactors to dependencies
Mostly just cleanup and renaming of certain stuff (mostly in dependencies). * Changed uw and sw to usize and ssize. * Removed zpl_cast usage throughout dependencies * No longer using GEN_DEF_INLINE & GEN_IMPL_INLINE * header_start.hpp renamed to platform.hpp for depdendencies header.
This commit is contained in:
		| @@ -136,7 +136,7 @@ The width dictates how much the static array can hold before it must give way to | ||||
|  | ||||
| ```cpp | ||||
| constexpr static | ||||
| uw ArrSpecs_Cap = | ||||
| usize ArrSpecs_Cap = | ||||
| ( | ||||
|     AST_POD_Size | ||||
|     - sizeof(AST*) * 3 | ||||
| @@ -158,7 +158,7 @@ Data Notes: | ||||
|   * Most of the work is just defining the allocation procedure: | ||||
|  | ||||
| ```cpp | ||||
|     void* ( void* allocator_data, AllocType type, sw size, sw alignment, void* old_memory, sw old_size, u64 flags ); | ||||
|     void* ( void* allocator_data, AllocType type, ssize size, ssize alignment, void* old_memory, ssize old_size, u64 flags ); | ||||
| ``` | ||||
|  | ||||
| * ASTs are wrapped for the user in a Code struct which is a wrapper for a AST* type. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user