From 326b62161d387b4181b797a76652796f730172fb Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Thu, 18 Sep 2008 08:38:25 +0000 Subject: [PATCH] in release builds gcc on osx evaporates these inlines if not WXEXPORTed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/wfstream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/wfstream.h b/include/wx/wfstream.h index 8289252bc9..aea6b17e6d 100644 --- a/include/wx/wfstream.h +++ b/include/wx/wfstream.h @@ -93,8 +93,8 @@ public: virtual ~wxTempFileOutputStream(); bool Close() { return Commit(); } - virtual bool Commit() { return m_file->Commit(); } - virtual void Discard() { m_file->Discard(); } + WXEXPORT virtual bool Commit() { return m_file->Commit(); } + WXEXPORT virtual void Discard() { m_file->Discard(); } wxFileOffset GetLength() const { return m_file->Length(); } bool IsSeekable() const { return true; } -- 2.45.2