Fixed overloaded virtual functions with const vs none warning

This commit is contained in:
marcelofg55 2016-06-12 13:31:22 -03:00
parent 4bb93c976c
commit 3787856563
8 changed files with 8 additions and 8 deletions

View file

@ -31,7 +31,7 @@
#include "servers/visual_server.h"
RID RoomBounds::get_rid() {
RID RoomBounds::get_rid() const {
return area;
}

View file

@ -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;