mirror of
https://github.com/panda3d/panda3d.git
synced 2026-04-21 14:09:24 -05:00
update for new linux gcc
This commit is contained in:
@@ -67,7 +67,7 @@ protected:
|
||||
public:
|
||||
virtual ~SimpleLerpFunctor(void);
|
||||
SimpleLerpFunctor<value>& operator=(const SimpleLerpFunctor<value>&);
|
||||
virtual void operator()(float) = 0;
|
||||
virtual void operator()(float);
|
||||
|
||||
PUBLISHED:
|
||||
static TypeHandle get_class_type(void) {
|
||||
|
||||
@@ -2496,7 +2496,7 @@ set_two_sided(bool two_sided, int priority) {
|
||||
////////////////////////////////////////////////////////////////////
|
||||
bool NodePath::
|
||||
get_two_sided() const {
|
||||
nassertr(has_arcs(), NULL);
|
||||
nassertr(has_arcs(), false);
|
||||
|
||||
const CullFaceTransition *cft;
|
||||
if (get_transition_into(cft, arc())) {
|
||||
@@ -2642,7 +2642,7 @@ set_transparency(bool transparency, int priority) {
|
||||
////////////////////////////////////////////////////////////////////
|
||||
bool NodePath::
|
||||
get_transparency() const {
|
||||
nassertr(has_arcs(), NULL);
|
||||
nassertr(has_arcs(), false);
|
||||
|
||||
const TransparencyTransition *tt;
|
||||
if (get_transition_into(tt, arc())) {
|
||||
|
||||
Reference in New Issue
Block a user