src/types.cpp

changeset 497
c51941e590b6
parent 493
16766ac1bbd9
child 498
791c831c8020
equal deleted inserted replaced
496:d6cbf21af8fb 497:c51941e590b6
409 } 409 }
410 410
411 // ============================================================================= 411 // =============================================================================
412 // ----------------------------------------------------------------------------- 412 // -----------------------------------------------------------------------------
413 bool File::atEnd() const 413 bool File::atEnd() const
414 { if (!m_textstream) 414 { assert (m_textstream != null);
415 fatal ("cannot use atEnd on a null file");
416
417 return m_textstream->atEnd(); 415 return m_textstream->atEnd();
418 } 416 }
419 417
420 // ============================================================================= 418 // =============================================================================
421 // ----------------------------------------------------------------------------- 419 // -----------------------------------------------------------------------------

mercurial