1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-08-14 05:21:42 +08:00

Compare commits

..

No commits in common. "cdbcbd3718a5d87a61557ac1fbfe4c510843d68b" and "0c48aa9bb22eb27f545b2085b58dd0c4a28f0e90" have entirely different histories.

View File

@ -177,7 +177,7 @@ int main()
{
int age = 10;
std::cout << "invoke before: " << age << "\n";
incr(age);
incr(*age);
std::cout << "invoke after: " << age << "\n";
}
```