mirror of
https://github.com/Ed94/gencpp.git
synced 2025-12-19 22:48:53 -08:00
Removing the gen. namespace from the files for components, dependencies, and file_processors. They are only necessary if the include directory is transparent, and in my case those are not. Made a docs directory. I'm offloading information from the main readme to there along with additional informationn I end up elaborating on down the line. Enum tables were moved to their own directory (project/enums). Library will not compile for now. Major refactor occuring with parsing related components.
569 B
569 B
| 1 | Invalid | INVALID |
|---|---|---|
| 2 | Consteval | consteval |
| 3 | Constexpr | constexpr |
| 4 | Constinit | constinit |
| 5 | Explicit | explicit |
| 6 | External_Linkage | extern |
| 7 | Global | global |
| 8 | Inline | inline |
| 9 | Internal_Linkage | internal |
| 10 | Local_Persist | local_persist |
| 11 | Mutable | mutable |
| 12 | Ptr | * |
| 13 | Ref | & |
| 14 | Register | register |
| 15 | RValue | && |
| 16 | Static | static |
| 17 | Thread_Local | thread_local |
| 18 | Volatile | volatile |
| 19 | Virtual | virtual |
| 20 | Const | const |
| 21 | Final | final |
| 22 | Override | override |