From 86dc37f6939bd5bb3c23f2c75aa045396a54c402 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 12 Jul 2013 01:10:48 +0000 Subject: [PATCH] Move 'template ' to after the class documentation. git-svn-id: https://svn.dealii.org/trunk@29983 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/base/thread_local_storage.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/include/deal.II/base/thread_local_storage.h b/deal.II/include/deal.II/base/thread_local_storage.h index a97219c44d..488e3955a3 100644 --- a/deal.II/include/deal.II/base/thread_local_storage.h +++ b/deal.II/include/deal.II/base/thread_local_storage.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2011, 2012 by the deal.II authors +// Copyright (C) 2011, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -29,7 +29,6 @@ DEAL_II_NAMESPACE_OPEN namespace Threads { - template /** * @brief A class that provides a separate storage location on each thread that accesses the object. * @@ -60,7 +59,8 @@ namespace Threads * provides a reference to a unique object when accessed from different threads. * Objects of type T are created lazily, i.e. they are only created whenever a * thread actually calls get(). - **/ + */ + template class ThreadLocalStorage { public: -- 2.39.5