diff options
author | Zachary Turner <zturner@google.com> | 2017-10-11 23:33:06 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-10-11 23:33:06 +0000 |
commit | 337462b36512cc001891a98fb98fa5693651722f (patch) | |
tree | 4b1708ba51865a9a5611fe209082e9ace07e7a8d /llvm/tools/llvm-nm/llvm-nm.cpp | |
parent | d791eaa5594053918e517439469e7747bd52d91c (diff) | |
download | bcm5719-llvm-337462b36512cc001891a98fb98fa5693651722f.tar.gz bcm5719-llvm-337462b36512cc001891a98fb98fa5693651722f.zip |
[ADT] Make Twine's copy constructor private.
There's a lot of misuse of Twine scattered around LLVM. This
ranges in severity from benign (returning a Twine from a function
by value that is just a string literal) to pretty sketchy (storing
a Twine by value in a class). While there are some uses for
copying Twines, most of the very compelling ones are confined
to the Twine class implementation itself, and other uses are
either dubious or easily worked around.
This patch makes Twine's copy constructor private, and fixes up
all callsites.
Differential Revision: https://reviews.llvm.org/D38767
llvm-svn: 315530
Diffstat (limited to 'llvm/tools/llvm-nm/llvm-nm.cpp')
-rw-r--r-- | llvm/tools/llvm-nm/llvm-nm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-nm/llvm-nm.cpp b/llvm/tools/llvm-nm/llvm-nm.cpp index 4ad0d95d67f..6b9ae463979 100644 --- a/llvm/tools/llvm-nm/llvm-nm.cpp +++ b/llvm/tools/llvm-nm/llvm-nm.cpp @@ -195,12 +195,12 @@ bool HadError = false; std::string ToolName; } // anonymous namespace -static void error(Twine Message, Twine Path = Twine()) { +static void error(const Twine &Message, const Twine &Path = Twine()) { HadError = true; errs() << ToolName << ": " << Path << ": " << Message << ".\n"; } -static bool error(std::error_code EC, Twine Path = Twine()) { +static bool error(std::error_code EC, const Twine &Path = Twine()) { if (EC) { error(EC.message(), Path); return true; |