squelch some gcc 4.0.1 warnings

This commit is contained in:
David Rose 2005-07-28 21:14:10 +00:00
parent c49f8600a6
commit 051b9a501a
2 changed files with 20 additions and 0 deletions

View File

@ -213,6 +213,24 @@ operator << (ostream &out, const EventParameter &param) {
}
////////////////////////////////////////////////////////////////////
// Function: EventStoreValueBase::Constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EventStoreValueBase::
EventStoreValueBase() {
}
////////////////////////////////////////////////////////////////////
// Function: EventStoreValueBase::Destructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EventStoreValueBase::
~EventStoreValueBase() {
}
////////////////////////////////////////////////////////////////////
// Function: EventStoreValue::Default Constructor
// Access: Private

View File

@ -81,6 +81,8 @@ INLINE ostream &operator << (ostream &out, const EventParameter &param);
////////////////////////////////////////////////////////////////////
class EXPCL_PANDA EventStoreValueBase : public TypedWritableReferenceCount {
public:
INLINE EventStoreValueBase();
INLINE ~EventStoreValueBase();
virtual void output(ostream &out) const=0;
public: