From: Mikko Rasa Date: Mon, 6 Oct 2014 23:02:48 +0000 (+0300) Subject: Use qualified name in base class initializer X-Git-Url: http://git.tdb.fi/?p=builder.git;a=commitdiff_plain;h=d0ad2256a21b9e83ad408564a1521b98617f20ba Use qualified name in base class initializer --- diff --git a/source/binarycomponent.cpp b/source/binarycomponent.cpp index 0d3e253..09a47fc 100644 --- a/source/binarycomponent.cpp +++ b/source/binarycomponent.cpp @@ -122,7 +122,7 @@ void BinaryComponent::create_targets() const } BinaryComponent::Loader::Loader(BinaryComponent &c): - DerivedObjectLoader(c) + DataFile::DerivedObjectLoader(c) { add("use", &Loader::use); }