Fixed overloaded virtual functions with const vs none warning
This commit is contained in:
parent
4bb93c976c
commit
3787856563
8 changed files with 8 additions and 8 deletions
|
|
@ -31,7 +31,7 @@
|
|||
#include "servers/visual_server.h"
|
||||
|
||||
|
||||
RID RoomBounds::get_rid() {
|
||||
RID RoomBounds::get_rid() const {
|
||||
|
||||
return area;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ protected:
|
|||
|
||||
public:
|
||||
|
||||
virtual RID get_rid();
|
||||
virtual RID get_rid() const;
|
||||
|
||||
void set_bounds( const BSP_Tree& p_bounds );
|
||||
BSP_Tree get_bounds() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue