]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datstrm.h
fix GCC warning about not explicitly initializing base class
[wxWidgets.git] / include / wx / datstrm.h
index d83aa66993c19aacabf5cb1f819a54c808a2f461..478d45b8beb7e5a5ff23d049909df91b420c4faf 100644 (file)
@@ -78,7 +78,7 @@ public:
     wxDataInputStream& operator>>(float& f);
 
     void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
-    
+
 #if wxUSE_UNICODE
     void SetConv( const wxMBConv &conv );
     wxMBConv *GetConv() const { return m_conv; }
@@ -91,7 +91,7 @@ protected:
     wxMBConv *m_conv;
 #endif
 
-    DECLARE_NO_COPY_CLASS(wxDataInputStream)
+    wxDECLARE_NO_COPY_CLASS(wxDataInputStream);
 };
 
 class WXDLLIMPEXP_BASE wxDataOutputStream
@@ -169,7 +169,7 @@ protected:
     wxMBConv *m_conv;
 #endif
 
-    DECLARE_NO_COPY_CLASS(wxDataOutputStream)
+    wxDECLARE_NO_COPY_CLASS(wxDataOutputStream);
 };
 
 #endif