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

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>