From f5c979243f2ae42dd76f74a255b53366f3e376a7 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Fri, 18 Aug 2000 10:20:52 +0000 Subject: [PATCH] editbuf.h (edit_streambuf): Fix syntax error in friend-declaration. * editbuf.h (edit_streambuf): Fix syntax error in friend-declaration. From-SVN: r35782 --- libio/ChangeLog | 5 +++++ libio/editbuf.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libio/ChangeLog b/libio/ChangeLog index 8376dd7e62b..dc57df059d8 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,8 @@ +2000-08-18 Gabriel Dos Reis + + * editbuf.h (edit_streambuf): Fix syntax error in + friend-declaration. + 2000-08-14 Zack Weinberg * configure.in: Accept *-*-linux* not just *-*-linux-gnu*. diff --git a/libio/editbuf.h b/libio/editbuf.h index d15758f257e..c548133d88d 100644 --- a/libio/editbuf.h +++ b/libio/editbuf.h @@ -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;