Skip to content

Commit

Permalink
Clang did not like this...
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Dec 10, 2023
1 parent 7d0ad48 commit 02a6e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/engine/sc_man.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class FScanner
template<class T>
void OpenMem(const char* name, const T& buffer)
{
static_assert(sizeof(T::value_type) == 1);
static_assert(sizeof(typename T::value_type) == 1);
OpenMem(name, (const char*)buffer.data(), (int)buffer.size());
}
void OpenString(const char *name, FString buffer);
Expand Down

0 comments on commit 02a6e04

Please sign in to comment.