[svn] commit: r2711 - /trunk/src/lib/dns/message.h
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Aug 12 18:35:21 UTC 2010
Author: jinmei
Date: Thu Aug 12 18:35:20 2010
New Revision: 2711
Log:
made a forward declaration for MessageImpl consistent with its
definition about class vs struct.
not sure C++ requires this consistency, but clang++ reportedly
considers it an error. and, actually there's no reason to use the
inconsistent declaration.
should be trivial enough, skipping review.
Modified:
trunk/src/lib/dns/message.h
Modified: trunk/src/lib/dns/message.h
==============================================================================
--- trunk/src/lib/dns/message.h (original)
+++ trunk/src/lib/dns/message.h Thu Aug 12 18:35:20 2010
@@ -80,7 +80,7 @@
class InputBuffer;
class MessageRenderer;
class Message;
-struct MessageImpl;
+class MessageImpl;
template <typename T>
struct SectionIteratorImpl;
More information about the bind10-changes
mailing list