diff options
author | shannonjr <shannonjr@pkgsrc.org> | 2004-06-07 19:36:40 +0000 |
---|---|---|
committer | shannonjr <shannonjr@pkgsrc.org> | 2004-06-07 19:36:40 +0000 |
commit | 3e835f779ce98e96c026ebd7de77d0146b4e6c28 (patch) | |
tree | 13c1aa99918d67261a3ffa0f3483893b76181d2e /audio | |
parent | cb4dd26e057a1a2baaf854f1ebbfba2e99c34ea9 (diff) | |
download | pkgsrc-3e835f779ce98e96c026ebd7de77d0146b4e6c28.tar.gz |
Re: PR 25858 Synopsis: audio/taglib - Improperly placed semicolon caused
compilation failure with gcc 3.4.0.
A semicolon at the end of a namespace declaration is erroneous and not
accepted by gcc 3.4.0.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/taglib/files/id3lib_strings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/taglib/files/id3lib_strings.h b/audio/taglib/files/id3lib_strings.h index aca4367a631..f94dfc06420 100644 --- a/audio/taglib/files/id3lib_strings.h +++ b/audio/taglib/files/id3lib_strings.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: id3lib_strings.h,v 1.1.1.1 2004/02/09 00:30:25 chris Exp $ +// $Id: id3lib_strings.h,v 1.2 2004/06/07 19:36:40 shannonjr Exp $ // id3lib: a software library for creating and manipulating id3v1/v2 tags // Copyright 1999, 2000 Scott Thomas Haug @@ -197,7 +197,7 @@ namespace dami typedef std::basic_string<char> String; typedef std::basic_string<unsigned char> BString; typedef std::basic_string<wchar_t> WString; -}; +} #endif /* _ID3LIB_STRINGS_H_ */ |