~ubuntu-branches/ubuntu/hardy/vtk/hardy

« back to all changes in this revision

Viewing changes to Filtering/vtkInformation.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Michele Angrisano
  • Date: 2007-06-30 22:39:48 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070630223948-6tn51upaurwfrcz8
Tags: 5.0.3-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add export SHELL=/bin/bash in debian/rules.
  - Update maintainer in field debian/control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
#include <assert.h>
42
42
 
43
 
vtkCxxRevisionMacro(vtkInformation, "$Revision: 1.25.4.1 $");
 
43
vtkCxxRevisionMacro(vtkInformation, "$Revision: 1.25.4.2 $");
44
44
vtkStandardNewMacro(vtkInformation);
45
45
 
46
46
// Note: assumes long is at least 32 bits.
117
117
      // and then adjust table size to fit the hash size
118
118
#if USE_MOD
119
119
      unsigned short i = 1;
120
 
      while(_stl_prime_list[i] + 1 <= size && i < _stl_num_primes)
 
120
      while(i < _stl_num_primes && _stl_prime_list[i] + 1 <= size)
121
121
        {
122
122
        i++;
123
123
        }