Fix clang-tidy readability-braces-around-statements warnings

This commit is contained in:
Eduardo Almeida
2022-10-06 22:09:53 +00:00
parent f87b53bbc5
commit 1b78ecc117
68 changed files with 1355 additions and 425 deletions

View File

@@ -315,7 +315,9 @@ int main (int argc, char *argv[]) {
// Finally, have that writer interrogate the DataCollector and save
// the results.
if (output)
output->Output (data);
{
output->Output (data);
}
// Free any memory here at the end of this example.
Simulator::Destroy ();