summaryrefslogtreecommitdiffstats
path: root/runtime/utils.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-05-19 10:25:33 -0700
committerBrian Carlstrom <bdc@google.com>2014-05-19 10:26:17 -0700
commit2afe49450f2e018f18b5de45428b9174bfd6f196 (patch)
tree2d6f96d2dfc4c8baaef172259a824708e510225e /runtime/utils.h
parent84e524207b23d58a1b1e5f4443000ccac97c4184 (diff)
downloadart-2afe49450f2e018f18b5de45428b9174bfd6f196.zip
art-2afe49450f2e018f18b5de45428b9174bfd6f196.tar.gz
art-2afe49450f2e018f18b5de45428b9174bfd6f196.tar.bz2
Follow up to "Add ISA directory to image and odex pathnames."
Change-Id: I7f08cc3052fbed93a56ccf1ab7675ae8bc129da9
Diffstat (limited to 'runtime/utils.h')
-rw-r--r--runtime/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/utils.h b/runtime/utils.h
index 9de5d23..4a9236a 100644
--- a/runtime/utils.h
+++ b/runtime/utils.h
@@ -404,11 +404,11 @@ std::string GetDalvikCacheFilenameOrDie(const char* file_location,
const char* cache_location);
// Returns the system location for an image
-std::string GetSystemImageFilename(const char* location, const InstructionSet isa);
+std::string GetSystemImageFilename(const char* location, InstructionSet isa);
// Returns an .odex file name next adjacent to the dex location.
// For example, for "/foo/bar/baz.jar", return "/foo/bar/<isa>/baz.odex".
-std::string DexFilenameToOdexFilename(const std::string& location, const InstructionSet isa);
+std::string DexFilenameToOdexFilename(const std::string& location, InstructionSet isa);
// Check whether the given magic matches a known file type.
bool IsZipMagic(uint32_t magic);