Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrobiqua committed Jan 2, 2025
1 parent 2c647fb commit 9dce1a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/src/sum.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "sum.h"

double Sum(double x, double y) {
return x + y + x;
double Sum(double x, double y)
{
return x + y;
}

0 comments on commit 9dce1a5

Please sign in to comment.