Skip to content

Commit

Permalink
Remove extra semi colon from faiss/index_factory.cpp
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: algoriddle

Differential Revision: D52969102

fbshipit-source-id: f6e4992783a2a1ab0598bf96c664da950e5bba5d
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 24, 2024
1 parent a7b76a7 commit 6b2c79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faiss/index_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ VectorTransform* parse_VectorTransform(const std::string& description, int d) {
return new RemapDimensionsTransform(d, std::max(d_out, d), false);
}
return nullptr;
};
}

/***************************************************************
* Parse IndexIVF
Expand Down

0 comments on commit 6b2c79c

Please sign in to comment.