Ignore:
Timestamp:
Jul 23, 2009, 12:32:48 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
f39735
Parents:
307290
Message:

Fix indentation from tabs to two spaces to prepare merging with MultipleMolecules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/verbose.cpp

    r307290 r560995  
    2222ostream& operator<<(ostream& ost,const Verbose& m)
    2323{
    24         return m.print(ost);
     24  return m.print(ost);
    2525};
    2626
     
    3333ostream& Binary::print (ostream &ost) const
    3434{
    35         int bits = 1, counter = 1;
    36         while ((bits = 1 << counter) < BinaryNumber)
     35  int bits = 1, counter = 1;
     36  while ((bits = 1 << counter) < BinaryNumber)
    3737    counter++;
    3838  for (int i=0;i<counter-1;i++) {
    39         if ((BinaryNumber & (1 << i)) == 0)
    40                 ost.put('0');
    41                 else
    42                 ost.put('1');
     39    if ((BinaryNumber & (1 << i)) == 0)
     40      ost.put('0');
     41     else
     42      ost.put('1');
    4343  }
    4444  ost.put('b');
     
    5656ostream& operator<<(ostream& ost,const Binary& m)
    5757{
    58         return m.print(ost);
     58  return m.print(ost);
    5959};
Note: See TracChangeset for help on using the changeset viewer.