Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 648eee6

Browse files
committed
Repair a couple of privacy warnings.
1 parent c679052 commit 648eee6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/codegen/branchify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use std::str::Chars;
44
use std::io::IoResult;
55

6-
struct ParseBranch {
6+
pub struct ParseBranch {
77
matches: ~[u8],
88
result: Option<~str>,
99
children: ~[ParseBranch],

src/http/headers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ pub struct HeaderValueByteIterator<'a, R> {
151151
next_byte: Option<u8>,
152152

153153
at_start: bool,
154-
state: HeaderValueByteIteratorState,
154+
priv state: HeaderValueByteIteratorState,
155155
}
156156

157157
impl<'a, R: Reader> HeaderValueByteIterator<'a, R> {

0 commit comments

Comments
 (0)