summaryrefslogtreecommitdiffstats
path: root/runtime/oat_file.h
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-04-03 21:28:42 -0700
committerAndreas Gampe <agampe@google.com>2015-04-06 14:03:17 -0700
commit758a801b66c134361a7b43f7e83f85d1fb800c4c (patch)
tree35b060c780fcf6e7c268fec47df40c74b5ab8b05 /runtime/oat_file.h
parente8aae00fa400efbb8f998a5dbf68eb42810889c1 (diff)
downloadart-758a801b66c134361a7b43f7e83f85d1fb800c4c.zip
art-758a801b66c134361a7b43f7e83f85d1fb800c4c.tar.gz
art-758a801b66c134361a7b43f7e83f85d1fb800c4c.tar.bz2
ART: Enable Clang's -Wdeprecated
Replace throw() with noexcept. Add default copy constructors and copy assignment constructors for cases with destructors, as the implicit definition is deprecated. Change-Id: Ice306a3f510b072b00bec4d4360f7c8055135c9d
Diffstat (limited to 'runtime/oat_file.h')
-rw-r--r--runtime/oat_file.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/oat_file.h b/runtime/oat_file.h
index 2b9ef9d..73a8c8e 100644
--- a/runtime/oat_file.h
+++ b/runtime/oat_file.h
@@ -134,8 +134,11 @@ class OatFile FINAL {
OatMethod(const uint8_t* base, const uint32_t code_offset)
: begin_(base), code_offset_(code_offset) {
}
+ OatMethod(const OatMethod&) = default;
~OatMethod() {}
+ OatMethod& operator=(const OatMethod&) = default;
+
// A representation of an invalid OatMethod, used when an OatMethod or OatClass can't be found.
// See ClassLinker::FindOatMethodFor.
static const OatMethod Invalid() {