gencpp/project/components/temp
Ed_ 050b00f28a WIP - Broken Compile : Added pragma once and includes to all files + Parser fixes, and String improvements
Adding the pragma once and includes the files broke compilation, still diagnosing why.

- Some string functions were moved to the cpp, still need to do some more evaluation of it and the containers...
- Added support for forceinline and neverinline to parsing (untested)
- Added support for specifiers in operator cast such as explicit, inline/forceinline/neverinline, etc.
    - Before it only support const.
    - Still need to support volatile.
- Forceinline was not supported at all for tokenization, fixed that.
2023-08-21 20:30:13 -04:00
..
ast_inlines.hpp WIP - Broken Compile : Added pragma once and includes to all files + Parser fixes, and String improvements 2023-08-21 20:30:13 -04:00
ecode.hpp WIP - Broken Compile : Added pragma once and includes to all files + Parser fixes, and String improvements 2023-08-21 20:30:13 -04:00
eoperator.hpp WIP - Broken Compile : Added pragma once and includes to all files + Parser fixes, and String improvements 2023-08-21 20:30:13 -04:00
especifier.hpp WIP - Broken Compile : Added pragma once and includes to all files + Parser fixes, and String improvements 2023-08-21 20:30:13 -04:00
etoktype.cpp WIP - Broken Compile : Added pragma once and includes to all files + Parser fixes, and String improvements 2023-08-21 20:30:13 -04:00
Readme.md Heavy refactor.. 2023-08-03 11:01:43 -04:00

Temporary Code

These are heavy macro code used throughout the library thats intended to be replaced with codegen done with the library itself.

The reason for this is to minimize macro generation to only trivial cases.
This makes the library more verbose but makes it easier to debug which is of higher priority.

Any sort of verbosity cost will be mitigated with better docs and heavy usage of pragma regions.