Try enforcing snake_case

This commit is contained in:
2025-08-25 13:47:35 -04:00
parent 50d873e8eb
commit 612497f733
3 changed files with 183 additions and 0 deletions

View File

@@ -119,6 +119,7 @@ auto addr = reinterpret_cast<uintptr_t>(ptr); // Pointer to integer conv
### Variables and Functions
- **snake_case** for all variables, functions, and member functions
- **Legacy camelCase exists** - the codebase currently contains mixed naming due to historical development. New code should use snake_case. Existing camelCase should be converted to snake_case during natural refactoring (not mass renaming).
```cpp
int64_t used_bytes() const;
void add_block(int64_t size);