Fix imports

This commit is contained in:
Ayaz Hafiz 2022-11-22 11:00:14 -06:00
parent 414a320358
commit 91ceebc065
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
6 changed files with 49 additions and 13 deletions

View file

@ -4,9 +4,6 @@ use std::path::{Path, PathBuf};
use bumpalo::Bump;
use roc_module::symbol::ModuleId;
#[cfg(not(windows))]
const ROC_SKIP_SUBS_CACHE: &str = "ROC_SKIP_SUBS_CACHE";
const SKIP_SUBS_CACHE: bool = {
match option_env!("ROC_SKIP_SUBS_CACHE") {
Some(s) => s.len() == 1 && s.as_bytes()[0] == b'1',