Fix warnings reported by VSCode

Serge Lamikhov-Center 2020-11-09 18:42:19 +02:00
parent 0eeae4aae5
commit de3b32ebf0
5 changed files with 19 additions and 11 deletions

7
FAQ.md

@ -1,3 +1,8 @@
# FAQ
* [Is there a list of distributions providing ELFIO package](Is-there-a-list-of-distributions-providing-ELFIO-package)
* [How to modify section data](How-to-modify-section-data)
* [How to build ELFIO examples in Visual Studio](How-to-build-ELFIO-examples-in-Visual-Studio)
* [How to build ELFIO examples in Visual Studio](How-to-build-ELFIO-examples-in-Visual-Studio)
***

@ -1,12 +1,11 @@
***
**ELFIO** is a small, header-only C++ library that provides a simple interface for reading and generating files in ELF binary format.
It is used as a standalone library - it is not dependant on any other product or project. Adhering to ISO C++, it compiles on a wide variety of architectures and compilers.
While the library is easy to use, some basic knowledge of the ELF binary format is required. Such Information can easily be found on the Web.
**ELFIO** library is distributed under [MIT License](http://www.opensource.org/licenses/MIT) conditions.
***
***

@ -5,4 +5,4 @@ One of the ways is demonstrated in 'anonymizer' example. An external file is mod
The second way is just alternating raw memory pointed by section->get_data(). An example of this can be found in generic_set_entry_rel() function in elfio_relocation.hpp file.
Please be warned: read/modify/write scenario may or may not work - there are too many cross references inside the format and it is easy to damage them. This will lead to incorrect object/executable file
Please be warned: read/modify/write scenario may or may not work - there are too many cross references inside the format and it is easy to damage them. This will lead to incorrect object/executable file

@ -1,3 +1,4 @@
A list of distributions providing ELFIO package can be found here:
* https://repology.org/project/elfio/versions
* https://pkgs.org/search/?q=elfio
* <https://repology.org/project/elfio/versions>
* <https://pkgs.org/search/?q=elfio>

@ -1,6 +1,9 @@
# [Home](https://github.com/serge1/ELFIO/wiki)
# [Home](<https://github.com/serge1/ELFIO/wiki>)
## [Documentation](Documentation)
## [FAQ](FAQ)
* [Is there a list of distributions providing ELFIO package](Is-there-a-list-of-distributions-providing-ELFIO-package)
* [How to modify section data](How-to-modify-section-data)
* [How to build ELFIO examples in Visual Studio](How-to-build-ELFIO-examples-in-Visual-Studio)
* [How to build ELFIO examples in Visual Studio](How-to-build-ELFIO-examples-in-Visual-Studio)