Skip to content
Snippets Groups Projects
Commit b94e2d01 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-418: initSingleton(), cleanupSingleton() must be non-static.

parent c04073da
No related branches found
No related tags found
No related merge requests found
......@@ -36,9 +36,9 @@ class LLWinDebug:
{
LLSINGLETON_EMPTY_CTOR(LLWinDebug);
public:
static void initSingleton();
void initSingleton();
static void generateMinidump(struct _EXCEPTION_POINTERS *pExceptionInfo = NULL);
static void cleanupSingleton();
void cleanupSingleton();
private:
static void writeDumpToFile(MINIDUMP_TYPE type, MINIDUMP_EXCEPTION_INFORMATION *ExInfop, const std::string& filename);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment