Skip to content

Commit

Permalink
Fix same issue again
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilDohne committed Feb 24, 2024
1 parent ffcc0a9 commit 31927d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PhotoshopAPI/src/Util/Struct/File.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void File::setOffsetAndRead(char* buffer, const uint64_t offset, const uint64_t

// ---------------------------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------------------------
File::File(const std::filesystem::path& file, const FileParams& params)
File::File(const std::filesystem::path& file, const FileParams params)
{
m_Offset = 0;
m_Size = 0;
Expand Down
2 changes: 1 addition & 1 deletion PhotoshopAPI/src/Util/Struct/File.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ struct File
// open for reading while if we set it to false it is only open for writing
// --------------------------------------------------------------------------------
// --------------------------------------------------------------------------------
File(const std::filesystem::path& file, const FileParams params = {});
File(const std::filesystem::path& file, const FileParams params = FileParams());


private:
Expand Down

0 comments on commit 31927d8

Please sign in to comment.