Skip to content

Commit

Permalink
Move a comment back next to what it was documenting
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Aug 8, 2018
1 parent 73ba85f commit b6b925e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ports/servo/non_android_main.rs
Expand Up @@ -8,7 +8,6 @@ extern crate euclid;
extern crate gleam;
extern crate glutin;
#[macro_use] extern crate lazy_static;
// The window backed by glutin
#[cfg(any(target_os = "linux", target_os = "macos"))] extern crate osmesa_sys;
extern crate servo;
#[cfg(feature = "unstable")]
Expand All @@ -20,9 +19,13 @@ extern crate winit;
#[cfg(target_os = "windows")] extern crate winapi;
#[cfg(target_os = "windows")] extern crate user32;

// The window backed by glutin
mod glutin_app;

mod resources;

mod browser;

use backtrace::Backtrace;
use servo::Servo;
use servo::compositing::windowing::WindowEvent;
Expand All @@ -36,8 +39,6 @@ use std::panic;
use std::process;
use std::thread;

mod browser;

pub mod platform {
#[cfg(target_os = "macos")]
pub use platform::macos::deinit;
Expand Down

0 comments on commit b6b925e

Please sign in to comment.