// knowledge to parse and interpret
// the other fields in between as
// well...
- while (getline(in,line), line.find("# END")==std::string::npos);
+ while (getline(in,line), line.find("# END")==std::string::npos)
+ ;
skip_empty_lines (in);
// clue what they mean. skip them
// all and leave the interpretation
// to other implementors...
- while (getline(in,line), ((line.find("End")==std::string::npos) && (in)));
+ while (getline(in,line), ((line.find("End")==std::string::npos) && (in)))
+ ;
// ok, so we are not at the end of
// the file, that's it, mostly
while ((c=in.get()) == comment_start)
// loop over the characters after
// the comment starter
- while (in.get() != '\n');
+ while (in.get() != '\n')
+ ;
+
// put back first character of
// first non-comment line
// $Id$
// Version: $Name$
//
-// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors
+// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// dereferencing cell-> triggers an
// assertion)
const CellIterator endc = cell->get_dof_handler().end();
- for (unsigned int t=0; ((t<n) && (cell!=endc)); ++t, ++cell);
+ for (unsigned int t=0; ((t<n) && (cell!=endc)); ++t, ++cell)
+ ;
}
// `hard' cells to the different
// threads.
for (unsigned int t=0; (t<this_thread.first) && (cell!=dof_handler.end());
- ++t, ++cell);
+ ++t, ++cell)
+ ;
+
// loop over all cells for this thread