From: bangerth Date: Fri, 3 Aug 2007 04:01:47 +0000 (+0000) Subject: Remove an unnecessary semicolon X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b6cbebc12ad839b08fbe8a079c6a9f60123ea0a;p=dealii-svn.git Remove an unnecessary semicolon git-svn-id: https://svn.dealii.org/trunk@14895 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-26/step-26.cc b/deal.II/examples/step-26/step-26.cc index fb90c3c571..a5407761e7 100644 --- a/deal.II/examples/step-26/step-26.cc +++ b/deal.II/examples/step-26/step-26.cc @@ -4,7 +4,7 @@ /* $Id$ */ /* Version: $Name$ */ /* */ -/* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors */ +/* Copyright (C) 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 */ @@ -378,7 +378,7 @@ template class BoundaryValues : public Function { public: - BoundaryValues () : Function() {}; + BoundaryValues () : Function() {} virtual double value (const Point &p, const unsigned int component = 0) const;