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

« back to all changes in this revision

Viewing changes to src/Kernel/Containers/hashset.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:
89
89
  return (N(h1)==N(h2)) && (h1<=h2);
90
90
}
91
91
 
92
 
template<class T> ostream&
93
 
operator << (ostream& out, hashset<T> h) {
 
92
template<class T> tm_ostream&
 
93
operator << (tm_ostream& out, hashset<T> h) {
94
94
  int i=0, j=0, n=h->n, size=h->size;
95
95
  out << "{ ";
96
96
  for (; i<n; i++) {