mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
added String::emptyString constant
svn-id: r10649
This commit is contained in:
parent
f57a6d74a1
commit
e5c62af78e
@ -25,6 +25,8 @@
|
||||
|
||||
namespace Common {
|
||||
|
||||
const String String::emptyString;
|
||||
|
||||
String::String(const char *str, int len) {
|
||||
_refCount = new int(1);
|
||||
if (str && len != 0) {
|
||||
|
@ -78,6 +78,8 @@ protected:
|
||||
int _capacity;
|
||||
|
||||
public:
|
||||
static const String emptyString;
|
||||
|
||||
String() : _capacity(0) { _refCount = new int(1); }
|
||||
String(const char *str, int len = -1);
|
||||
String(const ConstString &str);
|
||||
|
Loading…
x
Reference in New Issue
Block a user