From f5ecaf19b8b5b72b07d1a952ef4474d4905f7d2d Mon Sep 17 00:00:00 2001
From: Thimo Neubauer <thimo@dune-project.org>
Date: Mon, 15 Nov 2004 10:08:42 +0000
Subject: [PATCH] fixed double inline reported by test

[[Imported from SVN: r1075]]
---
 common/poolallocator.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/poolallocator.hh b/common/poolallocator.hh
index 00aec2e64..3ef6cfc4c 100644
--- a/common/poolallocator.hh
+++ b/common/poolallocator.hh
@@ -1,8 +1,8 @@
 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 // vi: set et ts=4 sw=2 sts=2:
 // $Id$
-#ifndef __DUNE_POOLALLOCATOR_HH__
-#define __DUNE_POOLALLOCATOR_HH__
+#ifndef DUNE_COMMON_POOLALLOCATOR_HH
+#define DUNE_COMMON_POOLALLOCATOR_HH
 
 #include <dune/common/alignment.hh>
 #include <iostream>
@@ -130,7 +130,7 @@ namespace Dune
     Pool(const Pool<MemberType,s>&);
     void operator=(const Pool<MemberType,s>& pool) const;
     /** @brief Grow our pool.*/
-    inline inline void grow();
+    inline void grow();
     /** @brief The first free element. */
     Reference *head_;
     /** @brief Our memory chunks. */
-- 
GitLab