修正Typo

This commit is contained in:
Ryan Lee 2020-04-13 00:17:41 +08:00 committed by GitHub
parent c347bd0e40
commit 4415a0377a
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>