Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiesen authored Sep 8, 2023
1 parent 9e28dab commit 0c33d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ To include `CppPerformanceMonitor` in your project, simply add the header file t
int main() {
Performance perf;

int process_id = perf.start("Sorting Algorithm", Performance::resolution::milliseconds);
int process_sorting = perf.start("Sorting Algorithm", Performance::resolution::milliseconds);

// Your code here
// ...

perf.stop(process_id);
perf.stop(process_sorting);
perf.show_results();

return 0;
Expand Down

0 comments on commit 0c33d4e

Please sign in to comment.