Remove unnecessary in C++11 c_str() calls
authorYaron Keren <yaron.keren@gmail.com>
Thu, 23 Jul 2015 05:49:29 +0000 (05:49 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Thu, 23 Jul 2015 05:49:29 +0000 (05:49 +0000)
commitc9cbb9371f7304b292027c02ceb79a7f692a90fa
treebb915b67b4ac05626543dc64a0a0bcd322d95609
parenteb653bd9d1acc484934bc10d078f6f1fdc08441d
Remove unnecessary in C++11 c_str() calls

While theoratically required in pre-C++11 to avoid re-allocation upon call,
C++11 guarantees that c_str() returns a pointer to the internal array so
pre-calling c_str() is no longer required.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242983 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Support/Unix/Signals.inc