mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-03 06:45:53 +01:00
Add _FORCE_INLINE_ to String's resize().
This commit is contained in:
parent
4fb7856b5a
commit
e756718326
@ -219,7 +219,7 @@ public:
|
||||
_FORCE_INLINE_ CharType get(int p_index) const { return _cowdata.get(p_index); }
|
||||
_FORCE_INLINE_ void set(int p_index, const CharType &p_elem) { _cowdata.set(p_index, p_elem); }
|
||||
_FORCE_INLINE_ int size() const { return _cowdata.size(); }
|
||||
Error resize(int p_size) {
|
||||
_FORCE_INLINE_ Error resize(int p_size) {
|
||||
Error err = _cowdata.resize(p_size);
|
||||
|
||||
//Ensure null terminator
|
||||
|
Loading…
Reference in New Issue
Block a user