Rename std functions to match the standard

This commit is contained in:
Alex
2023-03-23 04:56:49 +02:00
parent 4cd4e4cdc6
commit f86f3d9293
50 changed files with 1635 additions and 979 deletions

View File

@ -121,7 +121,7 @@ namespace Disk
uint8_t *Buffer = nullptr;
PartitionTable Table;
PartitionStyle Style = PartitionStyle::Unknown;
Vector<Partition *> Partitions;
std::vector<Partition *> Partitions;
bool MechanicalDisk = false;
size_t UniqueIdentifier = 0xdeadbeef;
@ -153,7 +153,7 @@ namespace Disk
unsigned char AvailablePorts = 0;
int BytesPerSector = 0;
Vector<Drive *> drives;
std::vector<Drive *> drives;
public:
void FetchDisks(unsigned long DriverUID);