Skip to content

Commit

Permalink
Format components atoms #21373
Browse files Browse the repository at this point in the history
  • Loading branch information
kingdido999 committed Aug 17, 2018
1 parent 25ebde7 commit 8badac8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/atoms/build.rs
Expand Up @@ -10,7 +10,8 @@ use std::io::{BufReader, BufRead};
use std::path::Path;

fn main() {
let static_atoms = Path::new(&env::var_os("CARGO_MANIFEST_DIR").unwrap()).join("static_atoms.txt");
let static_atoms =
Path::new(&env::var_os("CARGO_MANIFEST_DIR").unwrap()).join("static_atoms.txt");
let static_atoms = BufReader::new(File::open(&static_atoms).unwrap());
let mut atom_type = string_cache_codegen::AtomType::new("Atom", "atom!");

Expand Down

0 comments on commit 8badac8

Please sign in to comment.