Bug 1045068 - Fix some bad implicit constructors in Gecko profiler; r=BenWa

This commit is contained in:
Ehsan Akhgari 2014-07-28 13:11:26 -04:00
Родитель 2ab43e1c66
Коммит bb15d81dce
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -200,7 +200,7 @@ static inline bool profiler_in_privacy_mode() { return false; }
class GeckoProfilerInitRAII {
public:
GeckoProfilerInitRAII(void* stackTop) {
explicit GeckoProfilerInitRAII(void* stackTop) {
profiler_init(stackTop);
}
~GeckoProfilerInitRAII() {

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

@ -96,7 +96,7 @@ class ThreadProfile;
class ProfilerMarker {
friend class ProfilerLinkedList<ProfilerMarker>;
public:
ProfilerMarker(const char* aMarkerName,
explicit ProfilerMarker(const char* aMarkerName,
ProfilerMarkerPayload* aPayload = nullptr,
float aTime = 0);