]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.cpp
Miscellaneous minor code cleanups
[builder.git] / source / systemlibrary.cpp
index 2bfc04bb6f870e30cc6f890cff86ac1510d6058e..58eaea7087a095246aba7e2a7e496a2177158b56 100644 (file)
@@ -12,12 +12,12 @@ Distributed under the LGPL
 using namespace std;
 using namespace Msp;
 
-SystemLibrary::SystemLibrary(Builder &b, const Msp::FS::Path &p):
+SystemLibrary::SystemLibrary(Builder &b, const FS::Path &p):
        FileTarget(b, 0, p),
        Library(b, 0, p, extract_libname(p))
 { }
 
-string SystemLibrary::extract_libname(const Msp::FS::Path &p)
+string SystemLibrary::extract_libname(const FS::Path &p)
 {
        string result=FS::basepart(FS::basename(p));
        if(!result.compare(0, 3, "lib"))