summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-02-06 15:12:49 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-02-06 15:12:49 +0000
commita8050c2d0291a8b95749bd9c417b257cedac4dda (patch)
treee47ea0e40fcce6552d673eee7a81ec2bfde0e351 /vespalib
parentedaf5136db5f14c1a1595c4c6a9a82ea22548aca (diff)
Fix indentation
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/text/stringtokenizer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/text/stringtokenizer.h b/vespalib/src/vespa/vespalib/text/stringtokenizer.h
index 49f0e6d1050..98c308191c5 100644
--- a/vespalib/src/vespa/vespalib/text/stringtokenizer.h
+++ b/vespalib/src/vespa/vespalib/text/stringtokenizer.h
@@ -44,8 +44,7 @@ public:
explicit StringTokenizer(vespalib::stringref source)
: StringTokenizer(source, ",")
{}
- StringTokenizer(vespalib::stringref source,
- vespalib::stringref separators)
+ StringTokenizer(vespalib::stringref source, vespalib::stringref separators)
: StringTokenizer(source, separators, " \t\f\r\n")
{}
StringTokenizer(vespalib::stringref source,