Remove leading newlines

This commit is contained in:
varkor 2019-04-22 15:50:02 +01:00
parent 8423e00714
commit 9736d32f84
9 changed files with 3 additions and 12 deletions

View File

@ -1,4 +1,3 @@
fn main() {
// Pull in jemalloc when enabled.
//

View File

@ -1,4 +1,3 @@
// revisions:rpass1 rpass2 rpass3
// See issue #57692.

View File

@ -1,4 +1,3 @@
pub fn foo() {
println!("bar");
}

View File

@ -1,4 +1,3 @@
extern crate a_dylib;
fn main() {

View File

@ -1,5 +1,4 @@
pub trait Backend{}
pub trait Backend {}
pub trait SupportsDefaultKeyword {}
impl SupportsDefaultKeyword for Postgres {}

View File

@ -1,5 +1,4 @@
pub trait Backend{}
pub trait Backend {}
pub trait SupportsDefaultKeyword {}
impl SupportsDefaultKeyword for Postgres {}

View File

@ -1,4 +1,3 @@
use std::marker::PhantomData;
use std::convert::{TryFrom, AsRef};

View File

@ -1,5 +1,4 @@
pub trait Backend{}
pub trait Backend {}
pub trait SupportsDefaultKeyword {}
impl SupportsDefaultKeyword for Postgres {}

View File

@ -1,4 +1,3 @@
mod Mod {
pub struct FakeVariant<T>(pub T);
}