Bug 1557928 - Rename the DoNotCare tracer kind r=jonco

Depends on D34675

Differential Revision: https://phabricator.services.mozilla.com/D34703

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Paul Bone 2019-06-12 16:23:47 +00:00
Родитель f2b96f7abf
Коммит ee87fa7f84
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -239,14 +239,14 @@ class JS_PUBLIC_API CallbackTracer : public JSTracer {
#ifdef DEBUG
enum class TracerKind {
DoNotCare,
Unspecified,
Moving,
GrayBuffering,
VerifyTraceProtoAndIface,
ClearEdges,
UnmarkGray
};
virtual TracerKind getTracerKind() const { return TracerKind::DoNotCare; }
virtual TracerKind getTracerKind() const { return TracerKind::Unspecified; }
#endif
// In C++, overriding a method hides all methods in the base class with