fix: Resolve 44 compilation errors in ghost-core

This commit is contained in:
pandaadir05
2025-11-17 22:26:53 +02:00
parent b1f098571d
commit 34007d11c1
16 changed files with 566 additions and 310 deletions

View File

@@ -179,7 +179,7 @@ impl NeuralMemoryAnalyzer {
// Protection features
let rwx_count = memory_regions.iter()
.filter(|r| r.protection.readable && r.protection.writable && r.protection.executable)
.filter(|r| r.protection.is_readable() && r.protection.is_writable() && r.protection.is_executable())
.count() as f32;
features.push(rwx_count);