Browse Source

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.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2711 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 14 years ago
parent
commit
fbc1ca6ddb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/message.h

+ 1 - 1
src/lib/dns/message.h

@@ -80,7 +80,7 @@ typedef uint16_t qid_t;
 class InputBuffer;
 class MessageRenderer;
 class Message;
-struct MessageImpl;
+class MessageImpl;
 
 template <typename T>
 struct SectionIteratorImpl;