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 | dd2cc3b50618f9d387fce79bd2a5531855d04afc (patch) | |
tree | 13c1aa99918d67261a3ffa0f3483893b76181d2e /audio/taglib | |
parent | 3ef0a424df727bf5ab9280098279b924a371958f (diff) | |
download | pkgsrc-dd2cc3b50618f9d387fce79bd2a5531855d04afc.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/taglib')
-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_ */ |