1
Fork 0

use doc comments

This commit is contained in:
lcnr 2024-01-08 10:19:15 +01:00
parent 0ee9cfd54d
commit 41b624d40c

View file

@ -22,10 +22,10 @@ rustc_index::newtype_index! {
struct StackEntry<'tcx> { struct StackEntry<'tcx> {
input: CanonicalInput<'tcx>, input: CanonicalInput<'tcx>,
available_depth: Limit, available_depth: Limit,
// The maximum depth reached by this stack entry, only up-to date /// The maximum depth reached by this stack entry, only up-to date
// for the top of the stack and lazily updated for the rest. /// for the top of the stack and lazily updated for the rest.
reached_depth: StackDepth, reached_depth: StackDepth,
// In case of a cycle, the depth of the root. /// In case of a cycle, the depth of the root.
cycle_root_depth: StackDepth, cycle_root_depth: StackDepth,
encountered_overflow: bool, encountered_overflow: bool,