mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 21:14:23 -04:00
Inline functions had better have internal linkages.
This also removes useless inline specifiers.
This commit is contained in:
@ -50,7 +50,7 @@ namespace
|
||||
bool unicodeStrings = true;
|
||||
bool stringManagementEnabled = true;
|
||||
|
||||
inline char *stringToCharArray(const String &s)
|
||||
char *stringToCharArray(const String &s)
|
||||
{
|
||||
const std::string str = s.to8Bit(unicodeStrings);
|
||||
|
||||
@ -65,7 +65,7 @@ namespace
|
||||
#endif
|
||||
}
|
||||
|
||||
inline String charArrayToString(const char *s)
|
||||
String charArrayToString(const char *s)
|
||||
{
|
||||
return String(s, unicodeStrings ? String::UTF8 : String::Latin1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user