Merge pull request #18 from ryanlee2014/patch-1

修正Typo
This commit is contained in:
kelthuzadx 2020-04-13 11:07:03 +08:00 committed by GitHub
commit a71fbb9d7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ bool f(const Widget& w); //decltype(w)是const Widget&
struct Point{
int x; //decltype(Point::x)是int
int y; //decltype(Point:;y)是int
int y; //decltype(Point::y)是int
};
template<typename T>