mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
squelch some gcc 4.0.1 warnings
This commit is contained in:
parent
c49f8600a6
commit
051b9a501a
@ -213,6 +213,24 @@ operator << (ostream &out, const EventParameter ¶m) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: EventStoreValueBase::Constructor
|
||||||
|
// Access: Public
|
||||||
|
// Description:
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
INLINE EventStoreValueBase::
|
||||||
|
EventStoreValueBase() {
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: EventStoreValueBase::Destructor
|
||||||
|
// Access: Public
|
||||||
|
// Description:
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
INLINE EventStoreValueBase::
|
||||||
|
~EventStoreValueBase() {
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function: EventStoreValue::Default Constructor
|
// Function: EventStoreValue::Default Constructor
|
||||||
// Access: Private
|
// Access: Private
|
||||||
|
@ -81,6 +81,8 @@ INLINE ostream &operator << (ostream &out, const EventParameter ¶m);
|
|||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA EventStoreValueBase : public TypedWritableReferenceCount {
|
class EXPCL_PANDA EventStoreValueBase : public TypedWritableReferenceCount {
|
||||||
public:
|
public:
|
||||||
|
INLINE EventStoreValueBase();
|
||||||
|
INLINE ~EventStoreValueBase();
|
||||||
virtual void output(ostream &out) const=0;
|
virtual void output(ostream &out) const=0;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user