File gcc46_add_default_ctors.patch of Package armagetron
--- src/tools/tDirectories.h 2011-05-09 12:09:05.717372144 +0200
+++ src/tools/tDirectories.h 2011-05-09 12:14:28.192786036 +0200
@@ -55,6 +55,9 @@
class tPathResource: public tPath {
public:
+ tPathResource()
+ {
+ }
tString GetWritePath(const char *filename) const;
tString GetIncluded() const; //!< returns the path to the included resources
private:
--- src/tools/tDirectories.cpp 2011-05-09 12:08:56.011780938 +0200
+++ src/tools/tDirectories.cpp 2011-05-09 12:13:33.905073680 +0200
@@ -469,6 +469,9 @@
class tPathConfig: public tPath
{
public:
+ tPathConfig()
+ {
+ }
private:
void Paths ( tArray< tString >& paths ) const
{
@@ -500,6 +503,9 @@
class tPathData: public tPath
{
public:
+ tPathData()
+ {
+ }
private:
void Paths ( tArray< tString >& paths ) const
{
@@ -521,6 +527,9 @@
class tPathVar: public tPath
{
public:
+ tPathVar()
+ {
+ }
private:
void Paths ( tArray< tString >& paths ) const
{
@@ -547,6 +556,9 @@
class tPathScreenshot: public tPath
{
public:
+ tPathScreenshot()
+ {
+ }
private:
void Paths ( tArray< tString >& paths ) const
{