Skip to content

Commit 39d0dec

Browse files
generatedunixname89002005287564facebook-github-bot
authored andcommitted
Fix CQS signal facebook-folly-split-usage-check in fbcode/folly [A]
Differential Revision: D78537339 fbshipit-source-id: d9b5ebbd86df680c99b6d712fd8f5add290828cd
1 parent 984d629 commit 39d0dec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

folly/IPAddressV4.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ IPAddressV4 IPAddressV4::fromInverseArpaName(const std::string& arpaname) {
146146
fmt::format("input does not end with '.in-addr.arpa': '{}'", arpaname));
147147
}
148148
std::vector<StringPiece> pieces;
149-
split(".", piece, pieces);
149+
split('.', piece, pieces);
150150
if (pieces.size() != 4) {
151151
throw IPAddressFormatException(fmt::format("Invalid input. Got {}", piece));
152152
}

0 commit comments

Comments
 (0)