aboutsummaryrefslogtreecommitdiff
path: root/src/common/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/module.h')
-rw-r--r--src/common/module.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/module.h b/src/common/module.h
index 8aea99f8..8c20cea0 100644
--- a/src/common/module.h
+++ b/src/common/module.h
@@ -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