Fixed binary compatibility problem I introduced yesterday.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21031 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-05-05 05:46:08 +00:00
parent ddcaaa6129
commit ed1589a568
2 changed files with 4 additions and 0 deletions

View File

@ -17,7 +17,9 @@ class BVolume;
class BStatable {
public:
#if __GNUC__ > 3
virtual ~BStatable();
#endif
virtual status_t GetStat(struct stat *st) const = 0;

View File

@ -20,9 +20,11 @@
#include <sys/stat.h>
#if __GNUC__ > 3
BStatable::~BStatable()
{
}
#endif
/*! \fn status_t GetStat(struct stat *st) const