diff options
author | 2012-12-12 17:47:30 -0800 | |
---|---|---|
committer | 2012-12-12 18:11:44 -0800 | |
commit | 76b6167407c2b6f5d40ad895b2793a6b037f54b2 (patch) | |
tree | 5c433a0907ddf401f4078b6703253b1ae75e723e /src/compiler.h | |
parent | f66330a747eff155eb571b634fc9d901c55a78a7 (diff) |
Move mutex.h into base/mutex.h.
We don't actually need any hackery to get the right mutex.h any
more, but since we planned on having the google3-like stuff
in google3-like locations, this is an easy one to fix.
Change-Id: Ie27464ebbc208a6f4e694a97cf26b1cee0737009
Diffstat (limited to 'src/compiler.h')
-rw-r--r-- | src/compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.h b/src/compiler.h index bafd9d26eb..8facc9623c 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -21,13 +21,13 @@ #include <string> #include <vector> +#include "base/mutex.h" #include "compiled_class.h" #include "compiled_method.h" #include "dex_cache.h" #include "dex_file.h" #include "instruction_set.h" #include "invoke_type.h" -#include "mutex.h" #include "oat_file.h" #include "object.h" #include "runtime.h" |