Просмотр исходного кода

debug_utils: Make BreakpointObserver class' constructor explicit

Avoids implicit conversions.
Lioncash 8 лет назад
Родитель
Сommit
1e6a209649
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/video_core/debug_utils/debug_utils.h

+ 1 - 1
src/video_core/debug_utils/debug_utils.h

@@ -46,7 +46,7 @@ public:
     class BreakPointObserver {
     class BreakPointObserver {
     public:
     public:
         /// Constructs the object such that it observes events of the given DebugContext.
         /// Constructs the object such that it observes events of the given DebugContext.
-        BreakPointObserver(std::shared_ptr<DebugContext> debug_context)
+        explicit BreakPointObserver(std::shared_ptr<DebugContext> debug_context)
             : context_weak(debug_context) {
             : context_weak(debug_context) {
             std::unique_lock<std::mutex> lock(debug_context->breakpoint_mutex);
             std::unique_lock<std::mutex> lock(debug_context->breakpoint_mutex);
             debug_context->breakpoint_observers.push_back(this);
             debug_context->breakpoint_observers.push_back(this);