aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openmp/runtime/src/kmp_adt.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/openmp/runtime/src/kmp_adt.h b/openmp/runtime/src/kmp_adt.h
index 120a067..8ecff04 100644
--- a/openmp/runtime/src/kmp_adt.h
+++ b/openmp/runtime/src/kmp_adt.h
@@ -98,9 +98,7 @@ public:
// Drop the first n characters from the string.
// (Limit n to the length of the string.)
- void drop_front(size_t n) {
- sv.remove_prefix(std::min(n, length()));
- }
+ void drop_front(size_t n) { sv.remove_prefix(std::min(n, length())); }
// Drop characters from the string while the predicate returns true.
void drop_while(bool (*predicate)(char)) {