]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
contrib : add naming guidelines (cont) (#11177)
authorGeorgi Gerganov <redacted>
Mon, 13 Jan 2025 13:08:44 +0000 (15:08 +0200)
committerGitHub <redacted>
Mon, 13 Jan 2025 13:08:44 +0000 (15:08 +0200)
CONTRIBUTING.md

index a86f00ac6d70ea5f893dcfb336507d64ad5ceded..dc58dbd512ef7326907e4168efbf81ed2c4e182d 100644 (file)
@@ -22,7 +22,7 @@
 - Avoid fancy-looking modern STL constructs, use basic `for` loops, avoid templates, keep it simple
 - Vertical alignment makes things more readable and easier to batch edit
 - Clean-up any trailing whitespaces, use 4 spaces for indentation, brackets on the same line, `void * ptr`, `int & a`
-- Use sized integer types in the public API
+- Use sized integer types such as `int32_t` in the public API, e.g. `size_t` may also be appropriate for allocation sizes or byte offsets
 - Declare structs with `struct foo {}` instead of `typedef struct foo {} foo`
     - In C++ code omit optional `struct` and `enum` keyword whenever they are not necessary
     ```cpp
 # Documentation
 
 - Documentation is a community effort
-- When you need to look into the source code to figure out implementation details to figure out how to use an API consider adding a short summary to the header file for future reference
+- When you need to look into the source code to figure out how to use an API consider adding a short summary to the header file for future reference
 - When you notice incorrect or outdated documentation, please update it
 
 # Resources