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:
parent
ddcaaa6129
commit
ed1589a568
@ -17,7 +17,9 @@ class BVolume;
|
|||||||
|
|
||||||
class BStatable {
|
class BStatable {
|
||||||
public:
|
public:
|
||||||
|
#if __GNUC__ > 3
|
||||||
virtual ~BStatable();
|
virtual ~BStatable();
|
||||||
|
#endif
|
||||||
|
|
||||||
virtual status_t GetStat(struct stat *st) const = 0;
|
virtual status_t GetStat(struct stat *st) const = 0;
|
||||||
|
|
||||||
|
@ -20,9 +20,11 @@
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
|
||||||
|
#if __GNUC__ > 3
|
||||||
BStatable::~BStatable()
|
BStatable::~BStatable()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*! \fn status_t GetStat(struct stat *st) const
|
/*! \fn status_t GetStat(struct stat *st) const
|
||||||
|
Loading…
Reference in New Issue
Block a user