diff options
author | Igor Murashkin <iam@google.com> | 2015-02-04 17:30:43 -0800 |
---|---|---|
committer | Igor Murashkin <iam@google.com> | 2015-02-04 17:32:05 -0800 |
commit | eb6c7c23a8065af665e71f3408980bacd8ecc529 (patch) | |
tree | b1eda7fb58ca02d9539c27774ef2bb044b9369f0 /runtime/gc | |
parent | edf45678f133ce51d7aff43be68d9be3936ffca2 (diff) | |
download | android_art-eb6c7c23a8065af665e71f3408980bacd8ecc529.tar.gz android_art-eb6c7c23a8065af665e71f3408980bacd8ecc529.tar.bz2 android_art-eb6c7c23a8065af665e71f3408980bacd8ecc529.zip |
art: Try to fix parsed_options_test on the build server
(It works fine locally because environment variables are defined
differently)
Also some minor cleanup elsewhere pointed out in the previous code
review.
Change-Id: I80650d2be6ce467b838db85eb130a0020d7c1480
Diffstat (limited to 'runtime/gc')
-rw-r--r-- | runtime/gc/collector_type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/collector_type.h b/runtime/gc/collector_type.h index 9c620977c6..9275e6d932 100644 --- a/runtime/gc/collector_type.h +++ b/runtime/gc/collector_type.h @@ -54,7 +54,7 @@ static constexpr CollectorType kCollectorTypeDefault = #elif ART_DEFAULT_GC_TYPE_IS_GSS kCollectorTypeGSS #else - gc::kCollectorTypeCMS + kCollectorTypeCMS #error "ART default GC type must be set" #endif ; // NOLINT [whitespace/semicolon] [5] |