CStdString icon indicating copy to clipboard operation
CStdString copied to clipboard

Joe O'Leary's excellent drop-in CString replacement, facelifted for contemporary C++

Results 6 CStdString issues
Sort by recently updated
recently updated
newest added

Add an implementation for CStdString::Tokenize, and fixed a few things in TestString.cpp that I ran across.

I am trying to compile CStdString.h under GCC 9.3.0, but I get many warnings "warning: statement has no effect [-Wunused-value]" Changing `#define UNUSED(x) x` to `#define UNUSED(x) (void)x` removes many...

I am trying to compile CStdString.h under VS2017, but I get an error. Inside `HRESULT StreamSave(IStream* pStream) const` I have to change `else if ( empty() )` to `else if...

If the formatted string is bigger than 512 characters, the Format(...) routine will leak memory on Windows Unicode builds. This is, because pBuf is not freed from the previous iteration...

I just stumbled across this. It's kind of you to bring this up to spec. I still keep my own personal version on hand that I occasionally use from time...

Hello Is there a version that already support `constexpr`?