Skip to content

Commit

Permalink
Fix TSplitString compile error on Linux/macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
botder committed Jan 2, 2025
1 parent 6f5fb9c commit 0f9e18d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Shared/sdk/SString.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ struct SCharStringRef
template <class STRING_TYPE, class CHAR_TYPE>
class TSplitString : public std::vector<const CHAR_TYPE*>
{
using std::vector<const CHAR_TYPE*>::push_back;

public:
TSplitString() {}
TSplitString(const STRING_TYPE& strInput, const STRING_TYPE& strDelim, unsigned int uiMaxAmount = 0, unsigned int uiMinAmount = 0)
Expand Down

0 comments on commit 0f9e18d

Please sign in to comment.