mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
Remove min/max functions from util::geometry. Use std::cmp instead.
This commit is contained in:
parent
415bbaeb2e
commit
010d87b93e
10 changed files with 39 additions and 41 deletions
|
@ -2,9 +2,10 @@
|
|||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use servo_util::geometry::{Au, max, min};
|
||||
use servo_util::geometry::Au;
|
||||
use servo_util::logical_geometry::WritingMode;
|
||||
use servo_util::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize};
|
||||
use std::cmp::{max, min};
|
||||
use std::i32;
|
||||
use std::fmt;
|
||||
use style::computed_values::float;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue