Show
Ignore:
Timestamp:
08/05/09 14:40:03 (15 years ago)
Author:
mido
Message:

panove, vite, jak jsem peclivej na upravu kodu.. snad se vam bude libit:) konfigurace je v souboru /system/astylerc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/unittest-cpp/AssertException.h

    r418 r477  
    77namespace UnitTest { 
    88 
    9 class AssertException : public std::exception 
    10 { 
     9class AssertException : public std::exception { 
    1110public: 
    12     AssertException(char const* description, char const* filename, int lineNumber); 
    13     virtual ~AssertException() throw(); 
     11        AssertException ( char const* description, char const* filename, int lineNumber ); 
     12        virtual ~AssertException() throw(); 
    1413 
    15     virtual char const* what() const throw(); 
     14        virtual char const* what() const throw(); 
    1615 
    17     char const* Filename() const; 
    18     int LineNumber() const; 
     16        char const* Filename() const; 
     17        int LineNumber() const; 
    1918 
    2019private: 
    21     char m_description[512]; 
    22     char m_filename[256]; 
    23     int m_lineNumber; 
     20        char m_description[512]; 
     21        char m_filename[256]; 
     22        int m_lineNumber; 
    2423}; 
    2524