1
0
Fork 0

More warnings, similar issues.

This commit is contained in:
andy 2006-08-08 18:32:17 +00:00
parent e26481cf0a
commit 0c109dabbb
2 changed files with 3 additions and 1 deletions

View file

@ -70,6 +70,7 @@ private:
//
struct NasalTimer {
virtual void timerExpired();
virtual ~NasalTimer() {}
naRef handler;
int gcKey;
FGNasalSys* nasal;

View file

@ -97,8 +97,9 @@ static naRef f_getValue(naContext c, naRef me, int argc, naRef* args)
case SGPropertyNode::STRING:
case SGPropertyNode::UNSPECIFIED:
return NASTR((*node)->getStringValue());
default:
return naNil();
}
return naNil();
}
static naRef f_setValue(naContext c, naRef me, int argc, naRef* args)