diff --git a/src/system_wrappers/interface/critical_section_wrapper.h b/src/system_wrappers/interface/critical_section_wrapper.h index cfec9ae79d..a3a1134c83 100644 --- a/src/system_wrappers/interface/critical_section_wrapper.h +++ b/src/system_wrappers/interface/critical_section_wrapper.h @@ -38,15 +38,6 @@ public: class CriticalSectionScoped { public: - // Deprecated, don't add more users of this constructor. - // TODO(mflodman) Remove this version of the constructor when no one is - // using it any longer. - explicit CriticalSectionScoped(CriticalSectionWrapper& critsec) - : _ptrCritSec(&critsec) - { - _ptrCritSec->Enter(); - } - explicit CriticalSectionScoped(CriticalSectionWrapper* critsec) : _ptrCritSec(critsec) {