diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2014-11-21 10:33:07 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2014-11-21 21:52:56 -0500 |
commit | 0341444ce9f1f4154efd41c8e7250b812bb04056 (patch) | |
tree | 0ce317e9bc986c7f48b552fd83def3c715f1fc9a | |
parent | 0ddbd430a305dce2b25c5eb016c89f7ef5918baa (diff) | |
download | servo-0341444ce9f1f4154efd41c8e7250b812bb04056.tar.gz servo-0341444ce9f1f4154efd41c8e7250b812bb04056.zip |
util::opts::default_opts() is now pub
-rw-r--r-- | components/util/opts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/opts.rs b/components/util/opts.rs index 69592f5a3a0..cdd426ef380 100644 --- a/components/util/opts.rs +++ b/components/util/opts.rs @@ -153,7 +153,7 @@ static FORCE_CPU_PAINTING: bool = true; #[cfg(not(target_os="android"))] static FORCE_CPU_PAINTING: bool = false; -fn default_opts() -> Opts { +pub fn default_opts() -> Opts { Opts { urls: vec!(), n_render_threads: 1, |