Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 26, 2011, 1:57:01 PM (13 years ago)
Author:
landauf
Message:

fixed a few warnings that were only visible with EXTRA_COMPILER_WARNINGS enabled)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/libraries/util/Exception.h

    r7401 r8594  
    110110        virtual const std::string& getDescription()     const { return this->description_; }
    111111        //! Returns the line number on which the exception occurred.
    112         virtual const unsigned int getLineNumber()      const { return this->lineNumber_; }
     112        virtual unsigned int getLineNumber()            const { return this->lineNumber_; }
    113113        //! Returns the function in which the exception occurred.
    114114        virtual const std::string& getFunctionName()    const { return this->functionName_; }
Note: See TracChangeset for help on using the changeset viewer.