mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-26 01:05:07 +01:00
Fixes up some style nits, and gets us compiling on Leopard again.
Review: http://breakpad.appspot.com/133001 BUG:none TEST:Compile on Leopard git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@631 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
23eabdedab
commit
a2d5da4831
4 changed files with 6 additions and 13 deletions
|
|
@ -269,12 +269,12 @@ class Module {
|
|||
// A map from filenames to File structures. The map's keys are
|
||||
// pointers to the Files' names.
|
||||
typedef map<const string *, File *, CompareStringPtrs> FileByNameMap;
|
||||
typedef set<Function *, FunctionCompare> FunctionSet;
|
||||
|
||||
// The module owns all the files and functions that have been added
|
||||
// to it; destroying the module frees the Files and Functions these
|
||||
// point to.
|
||||
FileByNameMap files_; // This module's source files.
|
||||
typedef set<Function *, FunctionCompare> FunctionSet;
|
||||
FileByNameMap files_; // This module's source files.
|
||||
FunctionSet functions_; // This module's functions.
|
||||
|
||||
// The module owns all the call frame info entries that have been
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue