-
Notifications
You must be signed in to change notification settings - Fork 0
Document innovations, fix platform leaks, and silence safety warnings #126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1 @@ | ||||||||||
| --- | ||||||||||
|
||||||||||
| --- | |
| # This file was previously a CTest-generated artifact and should not contain test output. | |
| # It is kept empty/intentionally minimal; consider deleting it from version control and | |
| # adding `Testing/` or `Testing/Temporary/` to .gitignore. |
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -65,6 +65,10 @@ def analyze_file(filepath): | |||||||||
| if stripped.startswith("//") or stripped.startswith("*"): | ||||||||||
| continue | ||||||||||
|
|
||||||||||
| # Ignore ALLOW_REALTIME_DELETE and deleted functions | ||||||||||
| if "ALLOW_REALTIME_DELETE" in stripped or "= delete" in stripped: | ||||||||||
|
Comment on lines
+68
to
+69
|
||||||||||
| # Ignore ALLOW_REALTIME_DELETE and deleted functions | |
| if "ALLOW_REALTIME_DELETE" in stripped or "= delete" in stripped: | |
| # Ignore ALLOW_REALTIME_DELETE and deleted functions only for the 'delete' keyword | |
| if pattern == r"\bdelete\b" and ("ALLOW_REALTIME_DELETE" in stripped or "= delete" in stripped): |
Copilot
AI
Mar 4, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The check for deleted functions is a brittle substring match ("= delete"). This will miss valid formatting like =delete or = delete and can still leave the audit noisy. Prefer a small regex like =\s*delete\b (and ideally strip inline/multi-line comments before scanning) to make the heuristic more reliable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. Ctest artifact committed
🐞 Bug⛯ ReliabilityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools