summaryrefslogtreecommitdiff
path: root/utils/static_utoa.h
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2011-03-24 09:51:40 -0400
committerJonathan Clark <jon.h.clark@gmail.com>2011-03-24 09:51:40 -0400
commitc9f94d0845677e1be7d26b6ddc9fc642ef50f87d (patch)
tree929125cc230034d38e84d5d80e32635a0c9bc6b9 /utils/static_utoa.h
parent3beddfbe44c52fb69c390d0af92ab7c5e1647622 (diff)
parent38df103ab42e873965cf05ca83f6fd9472b74031 (diff)
Undo some silly local changes so we can pull
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) {