Skip to content

Commit

Permalink
Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
metajack committed Sep 10, 2015
1 parent 4c64c87 commit 2d35ee6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ports/cef/window.rs
Expand Up @@ -21,7 +21,6 @@ use wrappers::CefWrap;
use compositing::compositor_task::{self, CompositorProxy, CompositorReceiver};
use compositing::windowing::{WindowEvent, WindowMethods};
use euclid::point::Point2D;
use euclid::rect::Rect;
use euclid::scale_factor::ScaleFactor;
use euclid::size::{Size2D, TypedSize2D};
use gleam::gl;
Expand Down Expand Up @@ -233,11 +232,11 @@ impl WindowMethods for Window {
(Size2D::new(width, height), Point2D::zero())
}

fn set_inner_size(&self, size: Size2D<u32>) {
fn set_inner_size(&self, _size: Size2D<u32>) {

}

fn set_position(&self, point: Point2D<i32>) {
fn set_position(&self, _point: Point2D<i32>) {

}

Expand Down

0 comments on commit 2d35ee6

Please sign in to comment.