Migrating xam UI to elemental-forms.

Fixes #345.
This commit is contained in:
Ben Vanik
2015-07-19 14:43:27 -07:00
parent 5c7f42e9d1
commit baa86fcd1b
8 changed files with 195 additions and 80 deletions

View File

@@ -38,9 +38,9 @@ class StringBuffer {
private:
void Grow(size_t additional_length);
char* buffer_;
size_t buffer_offset_;
size_t buffer_capacity_;
char* buffer_ = nullptr;
size_t buffer_offset_ = 0;
size_t buffer_capacity_ = 0;
};
} // namespace xe