Change clang-format settings

This commit is contained in:
ReinUsesLisp 2019-03-11 03:26:21 -03:00
parent 38838c9a9d
commit 73595f4588
27 changed files with 356 additions and 320 deletions

View file

@ -4,8 +4,8 @@
* Lesser General Public License version 3 or any later version.
*/
#include "operand.h"
#include <cassert>
#include "operand.h"
namespace Sirit {
@ -22,12 +22,16 @@ u16 Operand::GetWordCount() const {
return 0;
}
bool Operand::operator==(const Operand& other) const { return false; }
bool Operand::operator==(const Operand& other) const {
return false;
}
bool Operand::operator!=(const Operand& other) const {
return !(*this == other);
}
OperandType Operand::GetType() const { return operand_type; }
OperandType Operand::GetType() const {
return operand_type;
}
} // namespace Sirit