Skip to content

Commit

Permalink
Remove superfluous dbg and blanks
Browse files Browse the repository at this point in the history
  • Loading branch information
busstoptaktik committed Mar 15, 2024
1 parent a64e246 commit 970df3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion ruminations/002-rumination.md
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,6 @@ Note: Rust Geodesy does not support modifying the ellipsoid with an `R` paramete
**Description:**
Take a copy of one or more coordinate dimensions and/or push, pop, roll or swap them onto the stack.


| Argument | Description |
|------------|--------------------------------------------|
| `push=...` | push a comma separated list of coordinate dimensions onto the stack |
Expand Down
3 changes: 0 additions & 3 deletions src/inner_op/stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ fn stack_roll(stack: &mut Vec<Vec<f64>>, operands: &mut dyn CoordinateSet, args:
let m = args[0].abs();
let mut n = args[1];
let depth = stack.len();
//dbg!(&stack);
dbg!(&args);

// Negative n: count the number of rolled elements from the bottom,
// i.e. roll 3,-2 = roll 3,1
Expand All @@ -275,7 +273,6 @@ fn stack_roll(stack: &mut Vec<Vec<f64>>, operands: &mut dyn CoordinateSet, args:
let e = stack.pop().unwrap();
stack.insert(depth - m, e);
}
//dbg!(&stack);

operands.len()
}
Expand Down

0 comments on commit 970df3c

Please sign in to comment.