From: Jason Sheldon Date: Thu, 6 Aug 2015 20:48:08 +0000 (-0400) Subject: Fixed a typo in assert X-Git-Tag: v8.4.0-rc2~637^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d038c42af8696f33cce08661288fc5ad8b0a668;p=dealii.git Fixed a typo in assert --- diff --git a/source/fe/mapping.cc b/source/fe/mapping.cc index 1a31ac021a..f3e7432afe 100644 --- a/source/fe/mapping.cc +++ b/source/fe/mapping.cc @@ -50,7 +50,7 @@ transform_real_to_unit_projected_to_face ( //The function doesn't make physical sense for dim=1 Assert(dim>1, ExcNotImplemented()); //Not implemented for higher dimensions - Assert(3<=dim, ExcNotImplemented()); + Assert(dim<=3, ExcNotImplemented()); Point unit_cell_pt = transform_real_to_unit_cell(cell, p);