Fixes an uninitialized field in class OsStackTraceGetter.
This commit is contained in:
parent
6149876141
commit
1da9ceefa5
|
@ -606,7 +606,7 @@ class OsStackTraceGetterInterface {
|
||||||
// A working implementation of the OsStackTraceGetterInterface interface.
|
// A working implementation of the OsStackTraceGetterInterface interface.
|
||||||
class OsStackTraceGetter : public OsStackTraceGetterInterface {
|
class OsStackTraceGetter : public OsStackTraceGetterInterface {
|
||||||
public:
|
public:
|
||||||
OsStackTraceGetter() {}
|
OsStackTraceGetter() : caller_frame_(NULL) {}
|
||||||
virtual String CurrentStackTrace(int max_depth, int skip_count);
|
virtual String CurrentStackTrace(int max_depth, int skip_count);
|
||||||
virtual void UponLeavingGTest();
|
virtual void UponLeavingGTest();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user