mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
CString::operator== implemented
This commit is contained in:
-10
@@ -41,21 +41,12 @@ COpcode& COpcode::operator = (const COpcode& opcode)
|
||||
|
||||
void COpcode::Serialize(CArchive& ar)
|
||||
{
|
||||
//if (ar.IsStoring()) {
|
||||
if (false)
|
||||
{
|
||||
// ASSERT(FALSE);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (ReadMSBWord(ar, m_wOperator) != OPERATOR_SIZE) {
|
||||
|
||||
printf("Error: Unable read opcode\n");
|
||||
AfxThrowUserException();
|
||||
}
|
||||
|
||||
std::cout << std::hex << m_wOperator << std::endl;
|
||||
|
||||
if ((m_wOperator < O_OPERATOR) ||
|
||||
((m_wOperator >= O_END_OP) &&
|
||||
(m_wOperator != O_STRINGOP) &&
|
||||
@@ -72,7 +63,6 @@ void COpcode::Serialize(CArchive& ar)
|
||||
AfxThrowUserException();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void COpcode::Expect(CArchive& ar, WORD wOperator, BOOL bArgumentFound, ULONG ulArgument)
|
||||
|
||||
Reference in New Issue
Block a user