mirror of
https://github.com/Ed94/gencpp.git
synced 2025-12-14 10:38:54 -08:00
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.
10 lines
169 B
C++
10 lines
169 B
C++
#pragma once
|
|
#include "containers.hpp"
|
|
|
|
#pragma region Hashing
|
|
|
|
u32 crc32( void const* data, sw len );
|
|
u64 crc64( void const* data, sw len );
|
|
|
|
#pragma endregion Hashing
|