| 54 | // asCSymbolTable template specializations for sGlobalVariableDescription entries |
| 55 | template<> |
| 56 | void asCSymbolTable<sGlobalVariableDescription>::GetKey(const sGlobalVariableDescription *entry, asSNameSpaceNamePair &key) const |
| 57 | { |
| 58 | asSNameSpace *ns = entry->ns; |
| 59 | asCString name = entry->name; |
| 60 | key = asSNameSpaceNamePair(ns, name); |
| 61 | } |
| 62 | |
| 63 | // Comparator for exact variable search |
| 64 | class asCCompGlobVarType : public asIFilter |