Skip to content

Commit

Permalink
Remove extra semi colon from kineto/libkineto/src/SampleListener.h
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: palmje

Differential Revision: D51995102

fbshipit-source-id: 55cd4456a94376b77d79f3e477c2ce9faa1e6646
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 3, 2024
1 parent 0664057 commit eb56921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libkineto/src/SampleListener.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class SampleListener {
SampleListener(const SampleListener&) = delete;
SampleListener& operator=(const SampleListener&) = delete;

virtual ~SampleListener(){};
virtual ~SampleListener(){}

// Report bucketed & aggregated values for event
virtual void handleSample(int device, const Sample& sample, bool from_new_version) = 0;
Expand Down

0 comments on commit eb56921

Please sign in to comment.