clang, strip

This commit is contained in:
Marek Ledworowski 2025-11-03 23:29:57 +01:00
parent 661d017326
commit 4949f16268
2 changed files with 3 additions and 6 deletions

View File

@ -68,7 +68,6 @@ private:
enum class FileType {
Regular, // standard file
Directory,
Device,
Socket,
Epoll,
@ -82,10 +81,9 @@ struct File {
std::string m_guest_name;
Common::FS::IOFile f;
std::mutex m_mutex;
std::shared_ptr<Directories::BaseDirectory> directory; // only valid for type == Directory
std::shared_ptr<Libraries::Net::Socket> socket; // only valid for type == Socket
std::shared_ptr<Libraries::Net::Epoll> epoll; // only valid for type == Epoll
std::shared_ptr<Libraries::Net::Resolver> resolver; // only valid for type == Resolver
std::shared_ptr<Libraries::Net::Socket> socket; // only valid for type == Socket
std::shared_ptr<Libraries::Net::Epoll> epoll; // only valid for type == Epoll
std::shared_ptr<Libraries::Net::Resolver> resolver; // only valid for type == Resolver
};
class HandleTable {

View File

@ -8,7 +8,6 @@
#include "common/io_file.h"
#include "core/file_format/psf.h"
namespace Libraries::SaveData {
// Used constexpr to easily use as string