Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core_io
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
core_io
Compare revisions
eb7204830786d7cbb776c6a878c7a59569840484 to a4ddc38063ddb2f2ff1b17f772b8b50f7f3baecd
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
redox-os/core_io
Select target project
No results found
a4ddc38063ddb2f2ff1b17f772b8b50f7f3baecd
Select Git revision
Branches
master
Swap
Target
redox-os/core_io
Select target project
redox-os/core_io
mati865/core_io
matijaskala/core_io
ayf/core_io
aaronjanse/core_io
4lDO2/core_io
coolreader18/core_io
7 results
eb7204830786d7cbb776c6a878c7a59569840484
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Hack to allow fpending
· a4ddc380
Jeremy Soller
authored
6 years ago
a4ddc380
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/b9adc3327ec7d2820ab2db8bb3cc2a0196a8375d/buffered.rs
+2
-2
2 additions, 2 deletions
src/b9adc3327ec7d2820ab2db8bb3cc2a0196a8375d/buffered.rs
with
2 additions
and
2 deletions
src/b9adc3327ec7d2820ab2db8bb3cc2a0196a8375d/buffered.rs
View file @
a4ddc380
...
...
@@ -377,7 +377,7 @@ impl<R: Seek> Seek for BufReader<R> {
/// [`flush`]: #method.flush
pub
struct
BufWriter
<
W
:
Write
>
{
inner
:
Option
<
W
>
,
buf
:
Vec
<
u8
>
,
pub
/* relibc */
buf
:
Vec
<
u8
>
,
// #30888: If the inner writer panics in a call to write, we don't want to
// write the buffered data a second time in BufWriter's destructor. This
// flag tells the Drop impl if it should skip the flush.
...
...
@@ -719,7 +719,7 @@ impl<W> fmt::Display for IntoInnerError<W> {
/// }
/// ```
pub
struct
LineWriter
<
W
:
Write
>
{
inner
:
BufWriter
<
W
>
,
pub
/* relibc */
inner
:
BufWriter
<
W
>
,
need_flush
:
bool
,
}
...
...
This diff is collapsed.
Click to expand it.