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

@ -26,9 +26,6 @@
#include "mii.app.romfs.h"
#include "shared_font.app.romfs.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// FileSys namespace
SERIALIZE_EXPORT_IMPL(FileSys::NCCHArchive)
SERIALIZE_EXPORT_IMPL(FileSys::NCCHFile)
SERIALIZE_EXPORT_IMPL(FileSys::ArchiveFactory_NCCH)
@ -243,8 +240,6 @@ u64 NCCHArchive::GetFreeBytes() const {
return 0;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
NCCHFile::NCCHFile(std::vector<u8> buffer, std::unique_ptr<DelayGenerator> delay_generator_)
: file_buffer(std::move(buffer)) {
delay_generator = std::move(delay_generator_);
@ -277,8 +272,6 @@ bool NCCHFile::SetSize(const u64 size) const {
return false;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
ArchiveFactory_NCCH::ArchiveFactory_NCCH() {}
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_NCCH::Open(const Path& path,