finixbit / elf-parser

Lightweight elf binary parser with no external dependencies - Sections, Symbols, Relocations, Segments
MIT License
250 stars 44 forks source link

Fix warnings in GCC 10, and add 'const' to constructor argument #5

Closed Property404 closed 2 years ago

Property404 commented 3 years ago

Several warnings were triggered in GCC 10 with the -Wall flag. Most commonly unused variables and signed/unsigned comparisons. These have been fixed.

Additionally, I added const to the constructor argument. Non-const was unnecessary since the constructor didn't modify the argument.