summaryrefslogtreecommitdiff
path: root/compiler/elf_stripper.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/elf_stripper.h')
-rw-r--r--compiler/elf_stripper.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/elf_stripper.h b/compiler/elf_stripper.h
index 6015b30cb2..f1a1d4605d 100644
--- a/compiler/elf_stripper.h
+++ b/compiler/elf_stripper.h
@@ -17,6 +17,8 @@
#ifndef ART_COMPILER_ELF_STRIPPER_H_
#define ART_COMPILER_ELF_STRIPPER_H_
+#include <string>
+
#include "base/macros.h"
#include "os.h"
@@ -26,7 +28,7 @@ class ElfStripper {
public:
// Strip an ELF file of unneeded debugging information.
// Returns true on success, false on failure.
- static bool Strip(File* file);
+ static bool Strip(File* file, std::string* error_msg);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(ElfStripper);