diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2010-11-18 09:37:11 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2010-11-18 09:37:11 (GMT) |
commit | d372c9a34a61674a9a5bc42ef7957683b33fee63 (patch) | |
tree | 61fa04055c58714667cd012592f67d8b6b83e163 /src | |
parent | 8c31c6529935cd9ee6f99bc38cfd182d5b3182e2 (diff) | |
download | Qt-d372c9a34a61674a9a5bc42ef7957683b33fee63.zip Qt-d372c9a34a61674a9a5bc42ef7957683b33fee63.tar.gz Qt-d372c9a34a61674a9a5bc42ef7957683b33fee63.tar.bz2 |
Compile fix
Remove the Q_UNUSED(), which uses template magic for some compilers, but some
compilers don't accept local types as the template argument.
Reviewed-by: trustme
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/thread/qthread_unix.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/corelib/thread/qthread_unix.cpp b/src/corelib/thread/qthread_unix.cpp index 75bc78a..c578955 100644 --- a/src/corelib/thread/qthread_unix.cpp +++ b/src/corelib/thread/qthread_unix.cpp @@ -144,7 +144,6 @@ static void create_current_thread_data_key() pthread_key_delete(current_thread_data_key); } } d; - Q_UNUSED(d); } // Utility functions for getting, setting and clearing thread specific data. |