]> granicus.if.org Git - taglib/commitdiff
Remove more useless inline specifiers.
authorTsuda Kageyu <tsuda.kageyu@gmail.com>
Wed, 17 Feb 2016 13:06:36 +0000 (22:06 +0900)
committerTsuda Kageyu <tsuda.kageyu@gmail.com>
Wed, 17 Feb 2016 13:06:36 +0000 (22:06 +0900)
They are no longer needed since the unnamed namespaces have solved the ODR violation.

taglib/asf/asfutils.h
taglib/mpeg/mpegutils.h
taglib/riff/riffutils.h
taglib/toolkit/tutils.h

index a8ecd70dc7f888da925dfb68702a11d30065f25a..4bca5fa61c3138f13182cce36df78c4219f85521 100644 (file)
@@ -37,7 +37,7 @@ namespace TagLib
     namespace
     {
 
-      inline unsigned short readWORD(File *file, bool *ok = 0)
+      unsigned short readWORD(File *file, bool *ok = 0)
       {
         const ByteVector v = file->readBlock(2);
         if(v.size() != 2) {
@@ -48,7 +48,7 @@ namespace TagLib
         return v.toUShort(false);
       }
 
-      inline unsigned int readDWORD(File *file, bool *ok = 0)
+      unsigned int readDWORD(File *file, bool *ok = 0)
       {
         const ByteVector v = file->readBlock(4);
         if(v.size() != 4) {
@@ -59,7 +59,7 @@ namespace TagLib
         return v.toUInt(false);
       }
 
-      inline long long readQWORD(File *file, bool *ok = 0)
+      long long readQWORD(File *file, bool *ok = 0)
       {
         const ByteVector v = file->readBlock(8);
         if(v.size() != 8) {
@@ -70,7 +70,7 @@ namespace TagLib
         return v.toLongLong(false);
       }
 
-      inline String readString(File *file, int length)
+      String readString(File *file, int length)
       {
         ByteVector data = file->readBlock(length);
         unsigned int size = data.size();
@@ -86,7 +86,7 @@ namespace TagLib
         return String(data, String::UTF16LE);
       }
 
-      inline ByteVector renderString(const String &str, bool includeLength = false)
+      ByteVector renderString(const String &str, bool includeLength = false)
       {
         ByteVector data = str.data(String::UTF16LE) + ByteVector::fromShort(0, false);
         if(includeLength) {
index e35f752fb28be14f95bbab8f72586f452a6a9203..cc484f2593ec3c3fd26eb21bd18d40f60965b671 100644 (file)
@@ -42,12 +42,12 @@ namespace TagLib
        * first byte is easy to check for, however checking to see if the second byte
        * starts with \e 111 is a bit more tricky, hence these functions.
        */
-      inline bool firstSyncByte(unsigned char byte)
+      bool firstSyncByte(unsigned char byte)
       {
         return (byte == 0xFF);
       }
 
-      inline bool secondSynchByte(unsigned char byte)
+      bool secondSynchByte(unsigned char byte)
       {
         // 0xFF is possible in theory, but it's very unlikely be a header.
 
index ecb985a4b5b7c576337bf3cde8cad612e345b779..4078385bfb4a87fd5bfa9e547b82563d398adfd6 100644 (file)
@@ -37,7 +37,7 @@ namespace TagLib
     namespace
     {
 
-      inline bool isValidChunkName(const ByteVector &name)
+      bool isValidChunkName(const ByteVector &name)
       {
         if(name.size() != 4)
           return false;
index e3e4f6c36e94b68fbf9f670cc3cf102d0e44d410..0a3e14dbfa2241455674bd991ad99a33f077840e 100644 (file)
@@ -61,7 +61,7 @@ namespace TagLib
       /*!
        * Reverses the order of bytes in an 16-bit integer.
        */
-      inline unsigned short byteSwap(unsigned short x)
+      unsigned short byteSwap(unsigned short x)
       {
 #if defined(HAVE_BOOST_BYTESWAP)
 
@@ -97,7 +97,7 @@ namespace TagLib
       /*!
        * Reverses the order of bytes in an 32-bit integer.
        */
-      inline unsigned int byteSwap(unsigned int x)
+      unsigned int byteSwap(unsigned int x)
       {
 #if defined(HAVE_BOOST_BYTESWAP)
 
@@ -136,7 +136,7 @@ namespace TagLib
       /*!
        * Reverses the order of bytes in an 64-bit integer.
        */
-      inline unsigned long long byteSwap(unsigned long long x)
+      unsigned long long byteSwap(unsigned long long x)
       {
 #if defined(HAVE_BOOST_BYTESWAP)
 
@@ -180,7 +180,7 @@ namespace TagLib
        * Returns a formatted string just like standard sprintf(), but makes use of
        * safer functions such as snprintf() if available.
        */
-      inline String formatString(const char *format, ...)
+      String formatString(const char *format, ...)
       {
         // Sufficient buffer size for the current internal uses.
         // Consider changing this value when you use this function.
@@ -228,7 +228,7 @@ namespace TagLib
        * We took the trouble to define this one here, since there are some
        * incompatible variations of case insensitive strcmp().
        */
-      inline bool equalsIgnoreCase(const char *s1, const char *s2)
+      bool equalsIgnoreCase(const char *s1, const char *s2)
       {
         while(*s1 != '\0' && *s2 != '\0' && ::tolower(*s1) == ::tolower(*s2)) {
           s1++;
@@ -252,7 +252,7 @@ namespace TagLib
       /*!
        * Returns the integer byte order of the system.
        */
-      inline ByteOrder systemByteOrder()
+      ByteOrder systemByteOrder()
       {
         union {
           int  i;
@@ -269,7 +269,7 @@ namespace TagLib
       /*!
        * Returns the IEEE754 byte order of the system.
        */
-      inline ByteOrder floatByteOrder()
+      ByteOrder floatByteOrder()
       {
         union {
           double d;