~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Kernel/Containers/hashmap.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (4.1.8 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100423070940-72mjdmdepfgrvo8f
Tags: 1:1.0.7.4-2
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
TMPL H::operator tree () {
26
26
  return tree (ASSOCIATE, as_tree(key), as_tree(im)); }
27
27
 
28
 
TMPL ostream&
29
 
operator << (ostream& out, H h) {
 
28
TMPL tm_ostream&
 
29
operator << (tm_ostream& out, H h) {
30
30
  out << h.key << "->" << h.im;
31
31
  return out;
32
32
}
135
135
  }
136
136
}
137
137
 
138
 
TMPL ostream&
139
 
operator << (ostream& out, hashmap<T,U> h) {
 
138
TMPL tm_ostream&
 
139
operator << (tm_ostream& out, hashmap<T,U> h) {
140
140
  int i= 0, j= 0, n= h->n, size= h->size;
141
141
  out << "{ ";
142
142
  for (; i<n; i++) {