Author: echristo
Date: Tue Sep  9 01:20:57 2014
New Revision: 217420

URL: http://llvm.org/viewvc/llvm-project?rev=217420&view=rev
Log:
Remove two unused class variables.

Modified:
    lldb/trunk/tools/lldb-mi/MICmdCmdData.cpp
    lldb/trunk/tools/lldb-mi/MICmdCmdData.h

Modified: lldb/trunk/tools/lldb-mi/MICmdCmdData.cpp
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdCmdData.cpp?rev=217420&r1=217419&r2=217420&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdCmdData.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MICmdCmdData.cpp Tue Sep  9 01:20:57 2014
@@ -1120,8 +1120,6 @@ CMICmdCmdDataWriteMemoryBytes::CMICmdCmd
 ,      m_constStrArgAddr( "address" )  
 ,      m_constStrArgContents( "contents" )     
 ,      m_constStrArgCount( "count" )   
-,      m_nAddr( 0 )
-,      m_nCount( 0 )
 {
        // Command factory matches this name with that received from the stdin 
stream
        m_strMiCmd = "data-write-memory-bytes";

Modified: lldb/trunk/tools/lldb-mi/MICmdCmdData.h
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdCmdData.h?rev=217420&r1=217419&r2=217420&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdCmdData.h (original)
+++ lldb/trunk/tools/lldb-mi/MICmdCmdData.h Tue Sep  9 01:20:57 2014
@@ -326,9 +326,7 @@ private:
        const CMIUtilString     m_constStrArgAddr;      
        const CMIUtilString     m_constStrArgContents;  
        const CMIUtilString     m_constStrArgCount;     
-       MIuint64                        m_nAddr;
        CMIUtilString           m_strContents;
-       MIuint64                        m_nCount;
 };
 
 //++ 
============================================================================
@@ -371,4 +369,4 @@ private:
        CMIUtilString           m_strContents;
        MIuint64                        m_nCount;
        MIuchar *                       m_pBufferMemory;                
-};
\ No newline at end of file
+};


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to