]> git.tdb.fi Git - builder.git/blobdiff - source/gnuccompiler.h
Don't treat using deprecated declarations as errors
[builder.git] / source / gnuccompiler.h
index 2ebfc438fb3fb0d432e0bc7ad538a65948927464..c0b570156e652509d6d29e7b459e7a03154257ea 100644 (file)
@@ -3,12 +3,16 @@
 
 #include "gnucompiler.h"
 
+/**
+The GNU C compiler, commonly known as gcc.
+*/
 class GnuCCompiler: public GnuCompiler
 {
 public:
-       GnuCCompiler(Builder &);
+       GnuCCompiler(Builder &, const Architecture &, const Msp::FS::Path & = Msp::FS::Path());
 
        virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
+       virtual Target *create_source(const Msp::FS::Path &) const;
 };
 
 #endif