Skip to content

Commit

Permalink
[Build] Fix build Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
fabsgc committed Aug 7, 2024
1 parent 5556bae commit 8c4fb03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Framework/Core/Serialization/TeStreamReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ namespace te
void ReadString(std::string& string);

template<typename T>
void Readeraw(const T& value)
void ReadRaw(T& value)
{
bool success = ReadData(reinterpret_cast<const UINT8*>(&value), sizeof(T));
bool success = ReadData(reinterpret_cast<UINT8*>(&value), sizeof(T));
TE_ASSERT_ERROR_SHORT(success);
}

template<typename T>
void ReadObject(const T& obj)
void ReadObject(T& obj)
{
// TODO Serialization
}
Expand Down

0 comments on commit 8c4fb03

Please sign in to comment.