editbuf.h (edit_streambuf): Fix syntax error in friend-declaration.

* editbuf.h (edit_streambuf): Fix syntax error in
	friend-declaration.

From-SVN: r35782
This commit is contained in:
Gabriel Dos Reis 2000-08-18 10:20:52 +00:00 committed by Gabriel Dos Reis
parent ef42b1ddae
commit f5c979243f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-08-18 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
* editbuf.h (edit_streambuf): Fix syntax error in
friend-declaration.
2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
* configure.in: Accept *-*-linux* not just *-*-linux-gnu*.

View File

@ -76,7 +76,7 @@ struct edit_string {
};
struct edit_streambuf : public streambuf {
friend edit_buffer;
friend class edit_buffer;
edit_string *str;
edit_streambuf* next; // Chain of edit_streambuf's for a edit_buffer.
short _mode;