Index: core/fxcrt/include/fx_string.h |
diff --git a/core/fxcrt/include/fx_string.h b/core/fxcrt/include/fx_string.h |
index 9aa67845f877425b52f0981734980d411a1a6511..2e35ff7f8058b4430226e778d829e364419cb548 100644 |
--- a/core/fxcrt/include/fx_string.h |
+++ b/core/fxcrt/include/fx_string.h |
@@ -93,7 +93,7 @@ class CFX_ByteStringC { |
uint32_t GetID(FX_STRSIZE start_pos = 0) const; |
const uint8_t* GetPtr() const { return m_Ptr; } |
- const FX_CHAR* GetCStr() const { return (const FX_CHAR*)m_Ptr; } |
+ const FX_CHAR* c_str() const { return (const FX_CHAR*)m_Ptr; } |
Tom Sepez
2016/04/04 18:22:40
nit: reinterpret cast.
dsinclair
2016/04/04 18:33:34
Done.
|
FX_STRSIZE GetLength() const { return m_Length; } |
bool IsEmpty() const { return m_Length == 0; } |