~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/tools/tDirectories.h

  • Committer: Daniel Lee Harple
  • Date: 2011-05-24 02:58:47 UTC
  • mto: (563.48.4 armagetronad)
  • mto: This revision was merged to the branch mainline in revision 731.
  • Revision ID: leeharple@gmail.com-20110524025847-leph6sfotflvmxkg
Fix pedantic warnings when using clang++. Mostly extra semi-colons. Also some void functions returning something, and bools used in place of NULL

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
    tString GetPaths(void) const; //!< Puts all paths into a tString for outputting to the user
52
52
 
53
 
    tPath(){};
54
 
    virtual ~tPath(){};
 
53
    tPath(){}
 
54
    virtual ~tPath(){}
55
55
protected:
56
56
    virtual void    Paths ( tArray< tString >& paths ) const = 0;  // maximum priority
57
57
};