Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Nov 17, 2014
1 parent 4499d0b commit 585a07e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions phf_mac/src/util.rs
Expand Up @@ -5,9 +5,7 @@ use std::hash::Hash;

use syntax::ast::Expr;
use syntax::codemap::Span;
use syntax::ext::base::{ExtCtxt,
MacResult,
MacExpr};
use syntax::ext::base::{ExtCtxt, MacResult, MacExpr};
use syntax::ext::build::AstBuilder;
use syntax::parse::token::InternedString;
use syntax::ptr::P;
Expand All @@ -17,9 +15,9 @@ use shared::PhfHash;

use time;

static DEFAULT_LAMBDA: uint = 5;
const DEFAULT_LAMBDA: uint = 5;

static FIXED_SEED: [u32, ..4] = [3141592653, 589793238, 462643383, 2795028841];
const FIXED_SEED: [u32, ..4] = [3141592653, 589793238, 462643383, 2795028841];

#[deriving(PartialEq, Eq, Clone)]
pub enum Key {
Expand Down

0 comments on commit 585a07e

Please sign in to comment.