aboutsummaryrefslogtreecommitdiff
path: root/src/common/module.h
diff options
context:
space:
mode:
authordmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-07-19 20:43:49 +0000
committerdmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-07-19 20:43:49 +0000
commit4ac61acb3a7dad6ce722fe07564be8ec92713228 (patch)
treefb71c49eb2aa7ca1f1867854ad9871c84504bc46 /src/common/module.h
parentBreakpad Linux/Mac symbol dumper: Share duplicate strings that arise in DWARF... (diff)
downloadbreakpad-4ac61acb3a7dad6ce722fe07564be8ec92713228.tar.xz
Clean up build for 64 bit.
Fix up some broken mac projects. Consolidate project settings in xcconfig files. http://breakpad.appspot.com/130001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@627 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/module.h')
-rw-r--r--src/common/module.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/module.h b/src/common/module.h
index 18351319..8aea99f8 100644
--- a/src/common/module.h
+++ b/src/common/module.h
@@ -274,7 +274,8 @@ class Module {
// to it; destroying the module frees the Files and Functions these
// point to.
FileByNameMap files_; // This module's source files.
- set<Function *, FunctionCompare> functions_; // This module's functions.
+ typedef set<Function *, FunctionCompare> FunctionSet;
+ FunctionSet functions_; // This module's functions.
// The module owns all the call frame info entries that have been
// added to it.