aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/kmp_tasking.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/kmp_tasking.cpp')
-rw-r--r--runtime/src/kmp_tasking.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/kmp_tasking.cpp b/runtime/src/kmp_tasking.cpp
index e120fa8..370260e 100644
--- a/runtime/src/kmp_tasking.cpp
+++ b/runtime/src/kmp_tasking.cpp
@@ -914,8 +914,8 @@ static size_t __kmp_round_up_to_val(size_t size, size_t val) {
size &= ~(val - 1);
if (size <= KMP_SIZE_T_MAX - val) {
size += val; // Round up if there is no overflow.
- }; // if
- }; // if
+ }
+ }
return size;
} // __kmp_round_up_to_va