diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-09-14 22:47:33 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-09-14 22:47:33 +0200 |
commit | b5e90b2495c0c66670c94f9ae6a50434490fa9af (patch) | |
tree | bd3d4496cd633427202c1dbd1e407c202a39ce03 /src | |
parent | 743f301eef632a41bd870529a9e838ce4974f9eb (diff) | |
download | llvm-kaleidoscope-rs-b5e90b2495c0c66670c94f9ae6a50434490fa9af.tar.gz llvm-kaleidoscope-rs-b5e90b2495c0c66670c94f9ae6a50434490fa9af.zip |
lib: updated comment on SmallCStr
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,6 +9,8 @@ pub mod parser; pub const SMALL_STR_SIZE: usize = 16; /// Small C string on the stack with fixed size [`SMALL_STR_SIZE`]. +/// +/// This is specially crafted to interact with the LLVM C API and get rid of some heap allocations. #[derive(Debug, PartialEq)] pub struct SmallCStr([u8; SMALL_STR_SIZE]); |