diff options
author | Ian Rogers <irogers@google.com> | 2014-10-21 23:31:19 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-10-22 12:06:23 -0700 |
commit | c7dd295a4e0cc1d15c0c96088e55a85389bade74 (patch) | |
tree | 0c08a2236bc9ba5d9a4dc75d4dd0ed2d76f8f1c6 /patchoat | |
parent | 94e5af8602150efa95bde35cc9be9891ddf30135 (diff) | |
download | art-c7dd295a4e0cc1d15c0c96088e55a85389bade74.zip art-c7dd295a4e0cc1d15c0c96088e55a85389bade74.tar.gz art-c7dd295a4e0cc1d15c0c96088e55a85389bade74.tar.bz2 |
Tidy up logging.
Move gVerboseMethods to CompilerOptions. Now "--verbose-methods=" option to
dex2oat rather than runtime argument "-verbose-methods:".
Move ToStr and Dumpable out of logging.h, move LogMessageData into logging.cc
except for a forward declaration.
Remove ConstDumpable as Dump methods are all const (and make this so if not
currently true).
Make LogSeverity an enum and improve compile time assertions and type checking.
Remove log_severity.h that's only used in logging.h.
With system headers gone from logging.h, go add to .cc files missing system
header includes.
Also, make operator new in ValueObject private for compile time instantiation
checking.
Change-Id: I3228f614500ccc9b14b49c72b9821c8b0db3d641
Diffstat (limited to 'patchoat')
-rw-r--r-- | patchoat/patchoat.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/patchoat/patchoat.cc b/patchoat/patchoat.cc index c0c96e5..8e5af53 100644 --- a/patchoat/patchoat.cc +++ b/patchoat/patchoat.cc @@ -24,6 +24,7 @@ #include <string> #include <vector> +#include "base/dumpable.h" #include "base/scoped_flock.h" #include "base/stringpiece.h" #include "base/stringprintf.h" |