1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

Portability fix.

This commit is contained in:
Bruno Haible
2003-04-23 11:13:30 +00:00
parent 7d38b21efa
commit 7ccc2cf132
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2003-01-07 Bruno Haible <bruno@clisp.org>
* src/keyword-list.icc (KeywordExt_List::rest): Use a portable cast.
(Only in GCC a cast of an lvalue is an lvalue.)
2003-01-01 Bruno Haible <bruno@clisp.org>
* src/options.cc (Options::parse_options): Update copyright year.

View File

@@ -1,6 +1,6 @@
/* Inline Functions for keyword-list.{h,cc}.
Copyright (C) 2002 Free Software Foundation, Inc.
Copyright (C) 2002-2003 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>.
This file is part of GNU GPERF.
@@ -49,5 +49,5 @@ KeywordExt_List::first () const
INLINE KeywordExt_List *&
KeywordExt_List::rest ()
{
return static_cast<KeywordExt_List*>(_cdr);
return *reinterpret_cast<KeywordExt_List**>(&_cdr);
}