Skip to content

Commit b44e126

Browse files
gmorphemeclaude
andauthored
Fix build issues and clean up temporary files (#188)
- Fix Block::fill method compilation issue by moving conditional compilation inside method body - Remove accidentally committed temporary files (.DS_Store, .cache/, test.eu) - Update .gitignore to prevent future commits of temporary files - Ensures clean builds in both debug and release modes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent eef4be6 commit b44e126

File tree

5 files changed

+6
-24
lines changed

5 files changed

+6
-24
lines changed

.DS_Store

-6 KB
Binary file not shown.

.cache/41/cache.db

-100 KB
Binary file not shown.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@
44
/harness/test/.result/
55
/src/syntax/grammar.rs
66
/src/syntax/string_pattern.rs
7+
8+
# Temporary files
9+
.DS_Store
10+
.cache/
11+
test.eu

src/eval/memory/block.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ impl Block {
6060
}
6161

6262
/// Fill areas that are meant to be dead with 0xff to aid debugging
63-
#[cfg(debug_assertions)]
6463
pub fn fill(&self, offset_bytes: usize, size_bytes: usize) {
64+
#[cfg(debug_assertions)]
6565
unsafe {
6666
let start = self.ptr.as_ptr().add(offset_bytes);
6767
let mem = std::slice::from_raw_parts_mut(start, size_bytes);

test.eu

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)