~ubuntu-branches/ubuntu/wily/dolfin/wily

« back to all changes in this revision

Viewing changes to dolfin/io/ExodusFile.cpp

  • Committer: Package Import Robot
  • Author(s): Johannes Ring
  • Date: 2014-09-22 14:35:34 UTC
  • mfrom: (1.1.17) (19.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20140922143534-0yi89jyuqbgdxwm9
Tags: 1.4.0+dfsg-4
* debian/control: Disable libcgal-dev on i386, mipsel and sparc.
* debian/rules: Remove bad directives in pkg-config file dolfin.pc
  (closes: #760658).
* Remove debian/libdolfin-dev.lintian-overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
//----------------------------------------------------------------------------
205
205
void ExodusFile::operator<<(const Function& u)
206
206
{
207
 
  u.update();
208
207
  write_function(u, counter);
209
208
}
210
209
//----------------------------------------------------------------------------
211
210
void ExodusFile::operator<<(const std::pair<const Function*, double> u)
212
211
{
213
212
  dolfin_assert(u.first);
214
 
  u.first->update();
215
213
  write_function(*(u.first), u.second);
216
214
}
217
215
//----------------------------------------------------------------------------