mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 20:47:46 +00:00
Merge pull request #765 from jbcrail/fix-warnings
Fix "private type in public interface" warnings
This commit is contained in:
commit
af359468a2
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@
|
||||||
use tokens::{Token};
|
use tokens::{Token};
|
||||||
|
|
||||||
type TokenStack = Vec<(usize, Token)>;
|
type TokenStack = Vec<(usize, Token)>;
|
||||||
type OperandsList = Vec< Box<ASTNode> >;
|
pub type OperandsList = Vec< Box<ASTNode> >;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum ASTNode {
|
pub enum ASTNode {
|
||||||
|
|
|
@ -58,7 +58,7 @@ impl Line {
|
||||||
// each line's prefix has to be considered to know whether to merge it with
|
// each line's prefix has to be considered to know whether to merge it with
|
||||||
// the next line or not
|
// the next line or not
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct FileLine {
|
pub struct FileLine {
|
||||||
line : String,
|
line : String,
|
||||||
indent_end : usize, // the end of the indent, always the start of the text
|
indent_end : usize, // the end of the indent, always the start of the text
|
||||||
pfxind_end : usize, // the end of the PREFIX's indent, that is, the spaces before the prefix
|
pfxind_end : usize, // the end of the PREFIX's indent, that is, the spaces before the prefix
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue