[codemod][lowrisk] Remove extra semi colon from caffe2/c10/util/Float8_e5m2.h (#115761)

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Test Plan: Sandcastle

Reviewed By: palmje

Differential Revision: D51995078

Pull Request resolved: https://github.com/pytorch/pytorch/pull/115761
Approved by: https://github.com/Skylion007
This commit is contained in:
Richard Barnes
2024-01-04 02:02:21 +00:00
committed by PyTorch MergeBot
parent 5395331644
commit 6fece41e9a
5 changed files with 6 additions and 6 deletions

View File

@ -28,8 +28,8 @@ CONVERSIONS_DECL OUT Get(IN x) {
return static_cast<OUT>(x);
}
}; // namespace convert
} // namespace convert
}; // namespace caffe2
} // namespace caffe2
#undef CONVERSIONS_DECL