chore: Minor cleanup flagged by newer gcc (#2140)

## Summary

Minor cleanup flagged by newer gcc:
- Removed unused variables
- Removed unimplemented function declaration
- `static` -> `inline` to avoid per-TU duplication

---

### AI Usage

Did you use AI tools to help write this code? _**NO**_
This commit is contained in:
Zach Nelson
2026-05-25 11:39:28 -05:00
committed by GitHub
parent 38210be820
commit b53ac3d52c
4 changed files with 8 additions and 15 deletions
-2
View File
@@ -59,8 +59,6 @@ void sortFileList(std::vector<std::string>& strs) {
// Check if both are at the start of a number
if (isdigit(*s1) && isdigit(*s2)) {
// Skip leading zeros and track them
const char* start1 = s1;
const char* start2 = s2;
while (*s1 == '0') s1++;
while (*s2 == '0') s2++;