mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +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};
|
||||
|
||||
type TokenStack = Vec<(usize, Token)>;
|
||||
type OperandsList = Vec< Box<ASTNode> >;
|
||||
pub type OperandsList = Vec< Box<ASTNode> >;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum ASTNode {
|
||||
|
|
|
@ -58,7 +58,7 @@ impl Line {
|
|||
// each line's prefix has to be considered to know whether to merge it with
|
||||
// the next line or not
|
||||
#[derive(Debug)]
|
||||
struct FileLine {
|
||||
pub struct FileLine {
|
||||
line : String,
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue