summaryrefslogtreecommitdiff
path: root/src/parser/symbol_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/symbol_table.h')
-rw-r--r--src/parser/symbol_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/symbol_table.h b/src/parser/symbol_table.h
index 5838790a8..4ab2fb521 100644
--- a/src/parser/symbol_table.h
+++ b/src/parser/symbol_table.h
@@ -35,7 +35,7 @@ struct StringHashFcn {
/**
* Generic symbol table for looking up variables by name.
*/
-template<typename ObjectType>
+template <class ObjectType>
class SymbolTable {
private:
@@ -85,7 +85,7 @@ public:
ObjectType getObject(const std::string& name) throw () {
table_iterator find = d_nameBindings.find(name);
Assert(find != d_nameBindings.end());
- return find->second /*.top()*/ ;
+ return find->second; /*.top()*/
}
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback