From 6c1ea91ca421a1b899af091043abdb58c2ed57e0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 7 Feb 2022 07:10:09 +0200 Subject: Use target::as instead of static_cast everywhere --- libbuild2/cc/compile-rule.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libbuild2/cc/compile-rule.cxx') diff --git a/libbuild2/cc/compile-rule.cxx b/libbuild2/cc/compile-rule.cxx index 77d01c6..aaaa43c 100644 --- a/libbuild2/cc/compile-rule.cxx +++ b/libbuild2/cc/compile-rule.cxx @@ -2582,7 +2582,7 @@ namespace build2 if (ht != pts.back ()) { - ht = static_cast (pts.back ().target); + ht = &pts.back ().target->as (); rs = "ERROR expected header '" + ht->path ().string () + "' to be found instead"; bad_error = true; // We expect an error from the compiler. @@ -5672,7 +5672,7 @@ namespace build2 // Hash (we know it's a file). // - cs.append (static_cast (*bt).path ().string ()); + cs.append (bt->as ().path ().string ()); // Copy over bmi{}s from our prerequisites weeding out duplicates. // @@ -5698,7 +5698,7 @@ namespace build2 }) == imports.end ()) { pts.push_back (et); - cs.append (static_cast (*et).path ().string ()); + cs.append (et->as ().path ().string ()); // Add to the list of imports for further duplicate suppression. // We could have stored reference to the name (e.g., in score) @@ -5907,7 +5907,7 @@ namespace build2 nullopt, // Use default extension. target_decl::implied, trace)); - file& bt (static_cast (p.first)); + file& bt (p.first.as ()); // Note that this is racy and someone might have created this target // while we were preparing the prerequisite list. @@ -6142,7 +6142,7 @@ namespace build2 nullopt, // Use default extension. target_decl::implied, trace)); - file& bt (static_cast (p.first)); + file& bt (p.first.as ()); // Note that this is racy and someone might have created this target // while we were preparing the prerequisite list. -- cgit v1.1