Merge pull request #718 from bolry/patch-1

Correct assigment interface for StrPair
This commit is contained in:
Lee Thomason
2018-11-06 09:10:21 -08:00
committed by GitHub

View File

@@ -190,7 +190,7 @@ private:
char* _end; char* _end;
StrPair( const StrPair& other ); // not supported StrPair( const StrPair& other ); // not supported
void operator=( StrPair& other ); // not supported, use TransferTo() void operator=( const StrPair& other ); // not supported, use TransferTo()
}; };