Skip to content

Commit

Permalink
Update Data.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kokomi000 authored Dec 23, 2023
1 parent ac39fc0 commit 7469c21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Data
{
Array::Array(const std::string FilePath, const int FileSize)
Array::Array(const std::filesystem::path FilePath, const int FileSize)
{
//Set Size
Size = FileSize;
Expand Down Expand Up @@ -83,7 +83,7 @@ namespace Data

//############################################## Vector ##############################################//

Vector::Vector(const std::string FilePath, const int FileSize)
Vector::Vector(const std::filesystem::path FilePath, const int FileSize)
{
//Set Size
Content.reserve(FileSize);
Expand Down Expand Up @@ -171,4 +171,4 @@ namespace Data
return true;

};
};
};

0 comments on commit 7469c21

Please sign in to comment.