Merge branch 'master' into errorstr

This commit is contained in:
Lee Thomason
2017-11-01 07:52:46 -07:00
2 changed files with 71 additions and 22 deletions

View File

@@ -2230,6 +2230,9 @@ protected:
*/
virtual void PrintSpace( int depth );
void Print( const char* format, ... );
void Write( const char* data, size_t size );
inline void Write( const char* data ) { Write( data, strlen( data ) ); }
void Putc( char ch );
void SealElementIfJustOpened();
bool _elementJustOpened;