-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tiny fixes from 10th editoin of the course
- Loading branch information
Sebastien Ponce
authored and
Sebastien Ponce
committed
Mar 26, 2024
1 parent
42772c7
commit 7f1007f
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,7 +145,7 @@ | |
int a; | ||
int sum(int b); | ||
int sum(int b, int c); | ||
} | ||
}; | ||
|
||
int MyFirstClass::sum(int b) { return a + b; } | ||
|
||
|