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.cpp

    r418 r477  
    44namespace UnitTest { 
    55 
    6 AssertException::AssertException(char const* description, char const* filename, int lineNumber) 
    7     : m_lineNumber(lineNumber) 
    8 { 
     6AssertException::AssertException ( char const* description, char const* filename, int lineNumber ) 
     7                : m_lineNumber ( lineNumber ) { 
    98        using namespace std; 
    109 
    11     strcpy(m_description, description); 
    12     strcpy(m_filename, filename); 
     10        strcpy ( m_description, description ); 
     11        strcpy ( m_filename, filename ); 
    1312} 
    1413 
    15 AssertException::~AssertException() throw() 
    16 { 
     14AssertException::~AssertException() throw() { 
    1715} 
    1816 
    19 char const* AssertException::what() const throw() 
    20 { 
    21     return m_description; 
     17char const* AssertException::what() const throw() { 
     18        return m_description; 
    2219} 
    2320 
    24 char const* AssertException::Filename() const 
    25 { 
    26     return m_filename; 
     21char const* AssertException::Filename() const { 
     22        return m_filename; 
    2723} 
    2824 
    29 int AssertException::LineNumber() const 
    30 { 
    31     return m_lineNumber; 
     25int AssertException::LineNumber() const { 
     26        return m_lineNumber; 
    3227} 
    3328