From 9dadc037cdf49b8e6d869d4226e2afeadaa0780a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 28 Aug 2016 15:03:29 +0200 Subject: Factor library search/processing out to cc::common --- build2/cc/msvc.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build2/cc/msvc.cxx') diff --git a/build2/cc/msvc.cxx b/build2/cc/msvc.cxx index e4323d4..80beb09 100644 --- a/build2/cc/msvc.cxx +++ b/build2/cc/msvc.cxx @@ -15,7 +15,7 @@ #include -#include +#include #include using namespace std; @@ -226,7 +226,7 @@ namespace build2 const char* pfx, const char* sfx) { - // Pretty similar logic to link::search_library(). + // Pretty similar logic to search_library(). // tracer trace (mod, "msvc_search_library"); @@ -279,7 +279,7 @@ namespace build2 return nullptr; } - liba* link:: + liba* common:: msvc_search_static (const process_path& ld, const dir_path& d, const prerequisite_key& p) const @@ -306,12 +306,12 @@ namespace build2 search ("", "_static") ? r : nullptr; } - libs* link:: + libs* common:: msvc_search_shared (const process_path& ld, const dir_path& d, const prerequisite_key& p) const { - tracer trace (x, "link::msvc_search_shared"); + tracer trace (x, "msvc_search_shared"); libs* r (nullptr); -- cgit v1.1