summaryrefslogtreecommitdiff
path: root/utils/static_utoa.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-03-23 22:53:44 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2011-03-23 22:53:44 -0400
commit918ed4bf919a55e3eb5d99d98c9b915921dc11ab (patch)
treea5739e7aa6444762a21f2b15ab9d633ec5059b49 /utils/static_utoa.h
parent57a218e86e30d57d9795bccd280737c431f6b4e4 (diff)
remove thread-local stuff which was fragile on some build systems
Diffstat (limited to 'utils/static_utoa.h')
-rwxr-xr-xutils/static_utoa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/static_utoa.h b/utils/static_utoa.h
index d15ed35b..bb3d821f 100755
--- a/utils/static_utoa.h
+++ b/utils/static_utoa.h
@@ -7,7 +7,7 @@
namespace {
static const int utoa_bufsize=40; // 64bit safe.
static const int utoa_bufsizem1=utoa_bufsize-1; // 64bit safe.
-THREADLOCAL char utoa_buf[utoa_bufsize]; // to put end of string character at buf[20]
+static char utoa_buf[utoa_bufsize]; // to put end of string character at buf[20]
}
inline char *static_utoa(unsigned n) {