Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused mut. #7

Merged
merged 1 commit into from May 10, 2013
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Remove unused mut.

  • Loading branch information
metajack committed May 10, 2013
commit 169b6ccdba9cbeb7d749d3c442aeee2fe26ab116
@@ -23,12 +23,10 @@ pub impl<'self> CompleteSelectResults {

fn new_from_parent(parent: &CompleteSelectResults,
child: SelectResults) -> CompleteSelectResults {
let mut child = child;

// New lifetime
{
let parent_computed = parent.computed_style();
let mut child_computed = child.computed_style();
let child_computed = child.computed_style();
//let net_parent_computed = &parent_computed.inner.inner;
let net_child_computed = &/*mut*/ child_computed.inner;
// FIXME: Need to get real font sizes
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.