Ver código fonte

Correct assigment interface for StrPair

Assigment operator takes non-const reference when const reference is the norm.
Bo Rydberg 7 anos atrás
pai
commit
65c1b86582
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      tinyxml2.h

+ 1 - 1
tinyxml2.h

@@ -190,7 +190,7 @@ private:
     char*   _end;
 
     StrPair( const StrPair& other );	// not supported
-    void operator=( StrPair& other );	// not supported, use TransferTo()
+    void operator=( const StrPair& other );	// not supported, use TransferTo()
 };