Skip to content

Commit

Permalink
Update File.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored Mar 1, 2024
1 parent b5156ad commit a6a1825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Os/Posix/File.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static_assert(std::numeric_limits<FwSignedSizeType>::min() <= std::numeric_limit
PosixFile::PosixFile(const PosixFile& other) {
// Must properly duplicate the file handle
this->m_handle.m_file_descriptor = ::dup(other.m_handle.m_file_descriptor);
};
}

PosixFile& PosixFile::operator=(const PosixFile& other) {
if (this != &other) {
Expand Down

0 comments on commit a6a1825

Please sign in to comment.