[cig-commits] commit by bangerth to /var/svn/dealii/aspect

dealii.demon at gmail.com dealii.demon at gmail.com
Sun Aug 11 17:32:12 PDT 2013


Revision 1825

Adjust an assertion where, I believe, the condition was simply reverted.

U   trunk/aspect/source/postprocess/tracer.cc


http://www.dealii.org/websvn/revision.php?repname=Aspect+Repository&path=%2F&rev=1825&peg=1825

Diff:
Modified: trunk/aspect/source/postprocess/tracer.cc
===================================================================
--- trunk/aspect/source/postprocess/tracer.cc	2013-08-12 00:31:00 UTC (rev 1824)
+++ trunk/aspect/source/postprocess/tracer.cc	2013-08-12 00:31:40 UTC (rev 1825)
@@ -191,7 +191,7 @@
           data_output_interval = prm.get_double ("Time between data output");
           data_output_format = prm.get("Data output format");
 #ifndef DEAL_II_HAVE_HDF5
-          AssertThrow (data_output_format == "hdf5",
+          AssertThrow (data_output_format != "hdf5",
                        ExcMessage ("deal.ii was not compiled with HDF5 support, "
                                    "so HDF5 output is not possible. Please "
                                    "recompile deal.ii with HDF5 support turned on."));


More information about the CIG-COMMITS mailing list