mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Silence warning: variable 'buffer' set but not used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223389 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9eb2a386c7
commit
499e74c3cd
@ -35,12 +35,14 @@ std::string StrError() {
|
|||||||
#endif // HAVE_ERRNO_H
|
#endif // HAVE_ERRNO_H
|
||||||
|
|
||||||
std::string StrError(int errnum) {
|
std::string StrError(int errnum) {
|
||||||
const int MaxErrStrLen = 2000;
|
|
||||||
char buffer[MaxErrStrLen];
|
|
||||||
buffer[0] = '\0';
|
|
||||||
std::string str;
|
std::string str;
|
||||||
if (errnum == 0)
|
if (errnum == 0)
|
||||||
return str;
|
return str;
|
||||||
|
#if defined(HAVE_STRERROR_R) || HAVE_DECL_STRERROR_S
|
||||||
|
const int MaxErrStrLen = 2000;
|
||||||
|
char buffer[MaxErrStrLen];
|
||||||
|
buffer[0] = '\0';
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_STRERROR_R
|
#ifdef HAVE_STRERROR_R
|
||||||
// strerror_r is thread-safe.
|
// strerror_r is thread-safe.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user