mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
make rbuild compile with gcc4
svn path=/trunk/; revision=15634
This commit is contained in:
parent
2db9bd4682
commit
12e17e01f0
4 changed files with 10 additions and 3 deletions
|
@ -57,3 +57,9 @@ Backend::Backend ( Project& project,
|
|||
configuration ( configuration )
|
||||
{
|
||||
}
|
||||
|
||||
Backend::~Backend()
|
||||
{
|
||||
delete &ProjectNode;
|
||||
delete &configuration;
|
||||
}
|
||||
|
|
|
@ -35,6 +35,8 @@ protected:
|
|||
Configuration& configuration );
|
||||
|
||||
public:
|
||||
virtual ~Backend();
|
||||
|
||||
virtual void Process () = 0;
|
||||
Project& ProjectNode;
|
||||
Configuration& configuration;
|
||||
|
|
|
@ -603,8 +603,7 @@ MingwBackend::GenerateXmlBuildFilesMacro() const
|
|||
else
|
||||
{
|
||||
fprintf ( fMakefile,
|
||||
" \\\n",
|
||||
xmlbuildFilenames.c_str () );
|
||||
" \\\n" );
|
||||
}
|
||||
xmlbuildFilenames.resize ( 0 );
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ class MingwBackend : public Backend
|
|||
public:
|
||||
MingwBackend ( Project& project,
|
||||
Configuration& configuration );
|
||||
virtual ~MingwBackend ();
|
||||
~MingwBackend ();
|
||||
virtual void Process ();
|
||||
std::string AddDirectoryTarget ( const std::string& directory,
|
||||
Directory* directoryTree );
|
||||
|
|
Loading…
Reference in a new issue