diff options
-rw-r--r-- | llvm/tools/llvm-pdbutil/FormatUtil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-pdbutil/FormatUtil.h b/llvm/tools/llvm-pdbutil/FormatUtil.h index 4d8a1db3d4a..31e4be34958 100644 --- a/llvm/tools/llvm-pdbutil/FormatUtil.h +++ b/llvm/tools/llvm-pdbutil/FormatUtil.h @@ -23,7 +23,7 @@ namespace llvm { namespace pdb { std::string truncateStringBack(StringRef S, uint32_t MaxLen); -static std::string truncateStringFront(StringRef S, uint32_t MaxLen); +std::string truncateStringFront(StringRef S, uint32_t MaxLen); std::string truncateQuotedNameFront(StringRef Label, StringRef Name, uint32_t MaxLen); std::string truncateQuotedNameBack(StringRef Label, StringRef Name, @@ -40,7 +40,7 @@ std::string truncateQuotedNameBack(StringRef Label, StringRef Name, case Enum::X: \ return Ret; -template <typename T> static std::string formatUnknownEnum(T Value) { +template <typename T> std::string formatUnknownEnum(T Value) { return formatv("unknown ({0})", static_cast<typename std::underlying_type<T>::type>(Value)) .str(); |