diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-14 22:38:02 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-14 22:38:02 +0000 |
commit | 4cf6e73f51b33e252cdad17bc03f487f17418941 (patch) | |
tree | 2cbc8f9a8ce3171d4432fc6c7f4bd686aef3b49b /include/llvm/Support/StringPool.h | |
parent | 55d2455541f6c65373ce4f0db48539737bd221c9 (diff) | |
download | external_llvm-4cf6e73f51b33e252cdad17bc03f487f17418941.tar.gz external_llvm-4cf6e73f51b33e252cdad17bc03f487f17418941.tar.bz2 external_llvm-4cf6e73f51b33e252cdad17bc03f487f17418941.zip |
Don't pass StringRef by reference.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/StringPool.h')
-rw-r--r-- | include/llvm/Support/StringPool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/StringPool.h b/include/llvm/Support/StringPool.h index 82e46d42c6..de05e0b547 100644 --- a/include/llvm/Support/StringPool.h +++ b/include/llvm/Support/StringPool.h @@ -64,7 +64,7 @@ namespace llvm { /// intern - Adds a string to the pool and returns a reference-counted /// pointer to it. No additional memory is allocated if the string already /// exists in the pool. - PooledStringPtr intern(const StringRef &Str); + PooledStringPtr intern(StringRef Str); /// empty - Checks whether the pool is empty. Returns true if so. /// |