diff options
Diffstat (limited to 'src/utils.h')
| -rw-r--r-- | src/utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h index 53a0378da1..66cda54323 100644 --- a/src/utils.h +++ b/src/utils.h @@ -5,6 +5,7 @@ #include "globals.h" #include "logging.h" +#include "primitive.h" #include "stringpiece.h" #include "stringprintf.h" @@ -156,6 +157,7 @@ static inline std::string PrintableString(const StringT& s) { // "java.lang.String[]", and so forth. std::string PrettyDescriptor(const String* descriptor); std::string PrettyDescriptor(const std::string& descriptor); +std::string PrettyDescriptor(Primitive::Type type); // Returns a human-readable signature for 'f'. Something like "a.b.C.f" or // "int a.b.C.f" (depending on the value of 'with_type'). |