aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/ThreadLocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/ThreadLocal.h')
-rw-r--r--include/llvm/Support/ThreadLocal.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Support/ThreadLocal.h b/include/llvm/Support/ThreadLocal.h
index 2957034ec7..62ec90ad24 100644
--- a/include/llvm/Support/ThreadLocal.h
+++ b/include/llvm/Support/ThreadLocal.h
@@ -30,9 +30,7 @@ namespace llvm {
/// to make this class more safe for use along with CrashRecoveryContext.
union {
char data[sizeof(ThreadLocalDataTy)];
- struct {
- ThreadLocalDataTy align_data;
- };
+ ThreadLocalDataTy align_data;
};
public:
ThreadLocalImpl();