DependencyList: remove outdated comment

This commit is contained in:
klensy 2024-04-23 13:17:57 +03:00
parent 378a43a065
commit 3d90595054

View file

@ -10,9 +10,6 @@ use rustc_session::config::CrateType;
/// A list of dependencies for a certain crate type.
///
/// The length of this vector is the same as the number of external crates used.
/// The value is None if the crate does not need to be linked (it was found
/// statically in another dylib), or Some(kind) if it needs to be linked as
/// `kind` (either static or dynamic).
pub type DependencyList = Vec<Linkage>;
/// A mapping of all required dependencies for a particular flavor of output.