1
0
Fork 0

De-yodify a true condition too

This commit is contained in:
legoboyvdlp R 2021-06-12 14:17:07 +01:00 committed by James Turner
parent 3ab4de1436
commit 0a0d0adc5f

View file

@ -144,7 +144,7 @@ public:
virtual void search( double frequency, const SGGeod & aircraftPosition );
virtual double getRange_nm( const SGGeod & aircraftPosition );
virtual void display( NavIndicator & navIndicator ) = 0;
virtual bool valid() const { return NULL != _navRecord && true == _serviceable; }
virtual bool valid() const { return NULL != _navRecord && _serviceable; }
virtual const std::string getIdent() const { return _ident; }
protected: