]> git.tdb.fi Git - builder.git/blobdiff - source/csourcefile.cpp
Inline simple constructors
[builder.git] / source / csourcefile.cpp
index e9b0bc8dca7d9c67a7e10d251120de4ac9e593b9..bc766059879d210023af0d64c378477ffa28fcc5 100644 (file)
 using namespace std;
 using namespace Msp;
 
-CSourceFile::CSourceFile(Builder &b, const FS::Path &p):
-       SourceFile(b, p)
-{ }
-
 CSourceFile::CSourceFile(Builder &b, const Component &c, const FS::Path &p):
        SourceFile(b, c, p)
 {
@@ -47,7 +43,7 @@ void CSourceFile::find_dependencies()
        {
                IO::BufferedFile in(path.str());
 
-               builder.get_logger().log("files", format("Reading includes from %s", path.str()));
+               builder.get_logger().log("files", "Reading includes from %s", path.str());
 
                parse_includes(in);
                cache.set_values(this, "includes", includes);