From: guido Date: Thu, 29 Jan 2004 10:39:18 +0000 (+0000) Subject: mark internal @internal X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d73731cf4b2a8dc1f3d2aa7ee662d46fd89cb84b;p=dealii-svn.git mark internal @internal git-svn-id: https://svn.dealii.org/trunk@8350 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/subscriptor.h b/deal.II/base/include/base/subscriptor.h index 91b3562aae..41abc4a73a 100644 --- a/deal.II/base/include/base/subscriptor.h +++ b/deal.II/base/include/base/subscriptor.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -69,6 +69,10 @@ namespace internal */ template struct PossiblyVolatile { + /** + * @internal + * @brief The actual typedef. + */ typedef volatile T type; }; @@ -82,6 +86,10 @@ namespace internal */ template struct PossiblyVolatile { + /** + * @internal + * @brief The actual typedef. + */ typedef T type; }; }