mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-03-01 17:11:33 +00:00
Fix class/struct mismatches in forward declarations.
This patch fixes some compiler warnings when compiling with clang. BUG=none TEST=Compile with clang and run unit tests. Review URL: https://breakpad.appspot.com/368001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@937 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
e89a7747b8
commit
a5477bbfab
|
@ -42,7 +42,7 @@ class Minidump;
|
||||||
class ProcessState;
|
class ProcessState;
|
||||||
class SourceLineResolverInterface;
|
class SourceLineResolverInterface;
|
||||||
class SymbolSupplier;
|
class SymbolSupplier;
|
||||||
class SystemInfo;
|
struct SystemInfo;
|
||||||
// Return type for Process()
|
// Return type for Process()
|
||||||
enum ProcessResult {
|
enum ProcessResult {
|
||||||
PROCESS_OK, // The minidump was
|
PROCESS_OK, // The minidump was
|
||||||
|
|
|
@ -44,7 +44,7 @@ using std::string;
|
||||||
|
|
||||||
struct StackFrame;
|
struct StackFrame;
|
||||||
struct WindowsFrameInfo;
|
struct WindowsFrameInfo;
|
||||||
struct CFIFrameInfo;
|
class CFIFrameInfo;
|
||||||
|
|
||||||
class SourceLineResolverInterface {
|
class SourceLineResolverInterface {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
namespace google_breakpad {
|
namespace google_breakpad {
|
||||||
|
|
||||||
struct WindowsFrameInfo;
|
struct WindowsFrameInfo;
|
||||||
struct CFIFrameInfo;
|
class CFIFrameInfo;
|
||||||
|
|
||||||
struct StackFrameX86 : public StackFrame {
|
struct StackFrameX86 : public StackFrame {
|
||||||
// ContextValidity has one entry for each relevant hardware pointer
|
// ContextValidity has one entry for each relevant hardware pointer
|
||||||
|
|
|
@ -54,7 +54,7 @@ class MinidumpContext;
|
||||||
class SourceLineResolverInterface;
|
class SourceLineResolverInterface;
|
||||||
struct StackFrame;
|
struct StackFrame;
|
||||||
class SymbolSupplier;
|
class SymbolSupplier;
|
||||||
class SystemInfo;
|
struct SystemInfo;
|
||||||
|
|
||||||
using std::set;
|
using std::set;
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ namespace google_breakpad {
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
class CodeModule;
|
class CodeModule;
|
||||||
class SystemInfo;
|
struct SystemInfo;
|
||||||
|
|
||||||
class SymbolSupplier {
|
class SymbolSupplier {
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in a new issue