mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 06:27:47 +00:00
core: Make converting constructors explicit where applicable
Avoids unwanted implicit conversions. Thankfully, given the large amount of cleanup in past PRs, only this tiny amount is left over to cover.
This commit is contained in:
parent
236789a321
commit
88f34a5b96
5 changed files with 5 additions and 5 deletions
|
@ -146,7 +146,7 @@ protected:
|
|||
* @param max_sessions Maximum number of sessions that can be
|
||||
* connected to this service at the same time.
|
||||
*/
|
||||
ServiceFramework(const char* service_name, u32 max_sessions = DefaultMaxSessions)
|
||||
explicit ServiceFramework(const char* service_name, u32 max_sessions = DefaultMaxSessions)
|
||||
: ServiceFrameworkBase(service_name, max_sessions, Invoker) {}
|
||||
|
||||
/// Registers handlers in the service.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue