summaryrefslogtreecommitdiff
path: root/src/expr/declaration_scope.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
commit39031822cf3f9faab7b5b9e6cbce46a5194503b1 (patch)
tree7f95265819554a20a2ef4637a4a8a6a83a7cfc0b /src/expr/declaration_scope.cpp
parentd4bfaa103d56d5c0172bf1457343a75ddea8a9b5 (diff)
enable dependence graphs in doxygen; fix lots of doxygen warnings, fix some documentation, and make it possible to "make doc" on a clean source tree (post-configure)
Diffstat (limited to 'src/expr/declaration_scope.cpp')
-rw-r--r--src/expr/declaration_scope.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/declaration_scope.cpp b/src/expr/declaration_scope.cpp
index 0c76ea845..f36c8a6e3 100644
--- a/src/expr/declaration_scope.cpp
+++ b/src/expr/declaration_scope.cpp
@@ -76,7 +76,7 @@ void DeclarationScope::bindType(const std::string& name, Type t) throw() {
}
void DeclarationScope::bindType(const std::string& name,
- const vector<Type>& params,
+ const std::vector<Type>& params,
Type t) throw() {
if(Debug.isOn("sort")) {
Debug("sort") << "bindType(" << name << ", [";
@@ -104,7 +104,7 @@ Type DeclarationScope::lookupType(const std::string& name) const throw(Assertion
}
Type DeclarationScope::lookupType(const std::string& name,
- const vector<Type>& params) const throw(AssertionException) {
+ const std::vector<Type>& params) const throw(AssertionException) {
pair<vector<Type>, Type> p = (*d_typeMap->find(name)).second;
Assert(p.first.size() == params.size(),
"type constructor arity is wrong: "
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback