Convert shared pointer to raw pointer

This commit is contained in:
Tinu Johnson
2026-04-10 15:00:31 +05:30
committed by Joel Thomas
parent 7e0becaa3e
commit 75b69f8c11
27 changed files with 145 additions and 133 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ void Room::setRoomName(const std::string& name)
m_name = name;
}
void Room::addBooking(std::shared_ptr<Booking> booking)
void Room::addBooking(Booking* booking)
{
if (booking)
{