summaryrefslogtreecommitdiff
path: root/include/phat/helpers/thread_local_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/phat/helpers/thread_local_storage.h')
-rw-r--r--include/phat/helpers/thread_local_storage.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/phat/helpers/thread_local_storage.h b/include/phat/helpers/thread_local_storage.h
index ce3c1ed..d0b5332 100644
--- a/include/phat/helpers/thread_local_storage.h
+++ b/include/phat/helpers/thread_local_storage.h
@@ -31,21 +31,21 @@ public:
thread_local_storage() : per_thread_storage( omp_get_max_threads() * PHAT_TLS_SPACING_FACTOR ) {};
- T& operator()() {
- return per_thread_storage[ omp_get_thread_num() * PHAT_TLS_SPACING_FACTOR ];
- }
+ T& operator()() {
+ return per_thread_storage[ omp_get_thread_num() * PHAT_TLS_SPACING_FACTOR ];
+ }
const T& operator()() const {
- return per_thread_storage[ omp_get_thread_num() * PHAT_TLS_SPACING_FACTOR ];
- }
+ return per_thread_storage[ omp_get_thread_num() * PHAT_TLS_SPACING_FACTOR ];
+ }
- T& operator[]( int tid ) {
- return per_thread_storage[ tid * PHAT_TLS_SPACING_FACTOR ];
- }
+ T& operator[]( int tid ) {
+ return per_thread_storage[ tid * PHAT_TLS_SPACING_FACTOR ];
+ }
const T& operator[]( int tid ) const {
- return per_thread_storage[ tid * PHAT_TLS_SPACING_FACTOR ];
- }
+ return per_thread_storage[ tid * PHAT_TLS_SPACING_FACTOR ];
+ }
protected:
std::vector< T > per_thread_storage;