You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/01/24 13:49:08 UTC

cvs commit: apr/include apr_pools.h

trawick     01/01/24 04:49:07

  Modified:    include  apr_pools.h
  Log:
  get rid of the extra semicolon, as it leads to a bazillion
  warnings on tru64
  
  Revision  Changes    Path
  1.41      +1 -1      apr/include/apr_pools.h
  
  Index: apr_pools.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_pools.h,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- apr_pools.h	2001/01/24 08:26:18	1.40
  +++ apr_pools.h	2001/01/24 12:49:06	1.41
  @@ -409,7 +409,7 @@
    */
   #define APR_POOL_DECLARE_ACCESSOR(typename) \
   	APR_DECLARE(apr_pool_t *) apr_get_##typename##_pool \
  -		(apr_##typename##_t *ob);
  +		(apr_##typename##_t *ob)
   
   #define APR_POOL_IMPLEMENT_ACCESSOR(typename) \
   	APR_POOL_IMPLEMENT_ACCESSOR_X(typename, pool)
  
  
  

Re: cvs commit: apr/include apr_pools.h

Posted by Greg Stein <gs...@lyra.org>.
I wondered about that one. It was silent on my Linux box, so I left it.

Ahh... the trials of portability...

Thx for the patch,
-g

On Wed, Jan 24, 2001 at 12:49:08PM -0000, trawick@apache.org wrote:
> trawick     01/01/24 04:49:07
> 
>   Modified:    include  apr_pools.h
>   Log:
>   get rid of the extra semicolon, as it leads to a bazillion
>   warnings on tru64
>   
>   Revision  Changes    Path
>   1.41      +1 -1      apr/include/apr_pools.h
>   
>   Index: apr_pools.h
>   ===================================================================
>   RCS file: /home/cvs/apr/include/apr_pools.h,v
>   retrieving revision 1.40
>   retrieving revision 1.41
>   diff -u -r1.40 -r1.41
>   --- apr_pools.h	2001/01/24 08:26:18	1.40
>   +++ apr_pools.h	2001/01/24 12:49:06	1.41
>   @@ -409,7 +409,7 @@
>     */
>    #define APR_POOL_DECLARE_ACCESSOR(typename) \
>    	APR_DECLARE(apr_pool_t *) apr_get_##typename##_pool \
>   -		(apr_##typename##_t *ob);
>   +		(apr_##typename##_t *ob)
>    
>    #define APR_POOL_IMPLEMENT_ACCESSOR(typename) \
>    	APR_POOL_IMPLEMENT_ACCESSOR_X(typename, pool)
>   
>   
>   

-- 
Greg Stein, http://www.lyra.org/