Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
badaix committed Jul 4, 2024
1 parent 07205a9 commit 0851aad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/control_requests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const StreamServer& Request::getStreamServer() const
return *server_.streamServer_;
}

const StreamManager& Request::getStreamManager() const
StreamManager& Request::getStreamManager() const
{
return *server_.streamManager_;
}
Expand Down
2 changes: 1 addition & 1 deletion server/control_requests.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Request
/// @return the server's stream server
const StreamServer& getStreamServer() const;
/// @return the server's stream manager
const StreamManager& getStreamManager() const;
StreamManager& getStreamManager() const;
/// @return server settings
const ServerSettings& getSettings() const;

Expand Down

0 comments on commit 0851aad

Please sign in to comment.