mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
sorted the extern crate, mod & use declarations
This commit is contained in:
parent
705ad72aee
commit
889eec364b
194 changed files with 804 additions and 870 deletions
|
@ -5,9 +5,9 @@
|
|||
//! Geometry in flow-relative space.
|
||||
|
||||
use euclid::num::Zero;
|
||||
use euclid::{Size2D, Point2D, SideOffsets2D, Rect};
|
||||
use std::cmp::{min, max};
|
||||
use std::fmt::{self, Debug, Formatter, Error};
|
||||
use euclid::{Point2D, Rect, SideOffsets2D, Size2D};
|
||||
use std::cmp::{max, min};
|
||||
use std::fmt::{self, Debug, Error, Formatter};
|
||||
use std::ops::{Add, Sub};
|
||||
|
||||
bitflags!(
|
||||
|
@ -1026,4 +1026,3 @@ pub enum PhysicalSide {
|
|||
Bottom,
|
||||
Left,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue