修复friend关键字错误
This commit is contained in:
parent
9f1ab4485f
commit
93cb13fe72
|
|
@ -265,11 +265,11 @@ public:
|
||||||
// ÆäËûÔËËã·û
|
// ÆäËûÔËËã·û
|
||||||
wchar_t& operator[] (int);
|
wchar_t& operator[] (int);
|
||||||
|
|
||||||
friend class std::ostream& operator<< (std::ostream &, const String &);
|
friend std::ostream& operator<< (std::ostream &, const String &);
|
||||||
friend class std::wostream& operator<< (std::wostream &, const String &);
|
friend std::wostream& operator<< (std::wostream &, const String &);
|
||||||
|
|
||||||
friend class std::istream& operator>> (std::istream &, String &);
|
friend std::istream& operator>> (std::istream &, String &);
|
||||||
friend class std::wistream& operator>> (std::wistream &, String &);
|
friend std::wistream& operator>> (std::wistream &, String &);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::wstring _str;
|
std::wstring _str;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue