Skip to content

Commit 09c7783

Browse files
generatedunixname89002005287564facebook-github-bot
authored andcommitted
Fix CQS signal facebook-folly-split-usage-check in fbcode/glean/lang
Reviewed By: CatherineGasnier Differential Revision: D78722795 fbshipit-source-id: 2c996a9c9da04435106325fb8e1b769aaea35f01
1 parent d8b1d68 commit 09c7783

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

glean/lang/clang/index.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ struct SourceIndexer {
416416
clang::tooling::ClangTool tool(*pcdb, source.file);
417417
if (!FLAGS_clang_arguments.empty()) {
418418
clang::tooling::CommandLineArguments args;
419-
folly::split(" ", FLAGS_clang_arguments, args, true);
419+
folly::split(' ', FLAGS_clang_arguments, args, true);
420420
if (!args.empty()) {
421421
tool.appendArgumentsAdjuster(clang::tooling::getInsertArgumentAdjuster(
422422
args, clang::tooling::ArgumentInsertPosition::END));
@@ -612,7 +612,7 @@ int getSelfRSS() {
612612
return 0;
613613
}
614614
std::vector<std::string> lines;
615-
folly::split("\n", contents, lines);
615+
folly::split('\n', contents, lines);
616616
for (const auto& line : lines) {
617617
folly::StringPiece piece(line);
618618
if (piece.subpiece(0, 4) == "Rss:") {

0 commit comments

Comments
 (0)