aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System/ThreadLocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/System/ThreadLocal.h')
-rw-r--r--include/llvm/System/ThreadLocal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/System/ThreadLocal.h b/include/llvm/System/ThreadLocal.h
index 7627be2..39b1e64 100644
--- a/include/llvm/System/ThreadLocal.h
+++ b/include/llvm/System/ThreadLocal.h
@@ -24,8 +24,8 @@ namespace llvm {
public:
ThreadLocalImpl();
virtual ~ThreadLocalImpl();
- void setInstance(void* d);
- void* getInstance();
+ void setInstance(const void* d);
+ const void* getInstance();
};
template<class T>