code: Remove outdated comment style (#6640)

This commit is contained in:
GPUCode
2023-06-25 12:52:41 +03:00
committed by GitHub
parent 9b82de6b24
commit 7edc86a9bc
52 changed files with 0 additions and 176 deletions

View File

@ -16,9 +16,6 @@
using Kernel::CodeSet;
////////////////////////////////////////////////////////////////////////////////////////////////////
// ELF Header Constants
// File type
enum ElfType {
ET_NONE = 0,
@ -108,9 +105,6 @@ typedef unsigned int Elf32_Off;
typedef signed int Elf32_Sword;
typedef unsigned int Elf32_Word;
////////////////////////////////////////////////////////////////////////////////////////////////////
// ELF file header
struct Elf32_Ehdr {
unsigned char e_ident[EI_NIDENT];
Elf32_Half e_type;
@ -170,9 +164,6 @@ struct Elf32_Rel {
Elf32_Word r_info;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
// ElfReader class
typedef int SectionID;
class ElfReader {
@ -359,9 +350,6 @@ SectionID ElfReader::GetSectionByName(const char* name, int firstSection) const
return -1;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// Loader namespace
namespace Loader {
FileType AppLoader_ELF::IdentifyType(FileUtil::IOFile& file) {