Explorar o código

FBX: Remove useless const qualifier from return value

const qualifier on primitive return type does nothing.
Turo Lamminen %!s(int64=8) %!d(string=hai) anos
pai
achega
7e033c6cef
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      code/FBXDocument.h

+ 3 - 3
code/FBXDocument.h

@@ -596,10 +596,10 @@ public:
 		return textures[index];
 
     }
-	const int textureCount() const {
+	int textureCount() const {
 		return static_cast<int>(textures.size());
 	}
-    const BlendMode GetBlendMode() const
+    BlendMode GetBlendMode() const
     {
         return blendMode;
     }
@@ -647,7 +647,7 @@ public:
         return content;
     }
 
-    const uint32_t ContentLength() const {
+    uint32_t ContentLength() const {
         return contentLength;
     }