Skip to content
Snippets Groups Projects
Commit f0a024f9 authored by Viktor Wolf's avatar Viktor Wolf
Browse files

next replace

parent 1b97780f
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ public: ...@@ -63,7 +63,7 @@ public:
// Create a tuple that holds all arguments. This assumes that all // Create a tuple that holds all arguments. This assumes that all
// argument types are default constructible. However, all // argument types are default constructible. However, all
// types that overload the FArchive "<<" operator probably are. // types that overload the FArchive "<<" operator probably are.
TTuple<typename TRemoveCV<typename TRemoveReference<ArgTypes>::Type>::Type...> ArgumentTuple; TTuple<typename std::remove_cv_t<typename TRemoveReference<ArgTypes>::Type>::Type...> ArgumentTuple;
// This call will deserialze the values and fill all values in the tuple appropriately. // This call will deserialze the values and fill all values in the tuple appropriately.
FillArgumentTuple<0>(&MemoryReader, &ArgumentTuple); FillArgumentTuple<0>(&MemoryReader, &ArgumentTuple);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment