mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 22:17:48 +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
|
@ -32,7 +32,7 @@ public:
|
|||
* Recorder constructor
|
||||
* @param initial_state Initial recorder state
|
||||
*/
|
||||
Recorder(const InitialState& initial_state);
|
||||
explicit Recorder(const InitialState& initial_state);
|
||||
|
||||
/// Finish recording of this Citrace and save it using the given filename.
|
||||
void Finish(const std::string& filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue