clang-format on most of kernel/

This commit is contained in:
Ben Vanik
2014-08-17 13:13:03 -07:00
parent 854bcdb60a
commit 1c4dcd5e0e
76 changed files with 2075 additions and 3169 deletions

View File

@@ -9,15 +9,11 @@
#include <xenia/kernel/native_list.h>
namespace xe {
namespace kernel {
NativeList::NativeList(Memory* memory) :
memory_(memory),
head_(kInvalidPointer) {
}
NativeList::NativeList(Memory* memory)
: memory_(memory), head_(kInvalidPointer) {}
void NativeList::Insert(uint32_t ptr) {
uint8_t* mem = memory_->membase();
@@ -67,9 +63,7 @@ uint32_t NativeList::Shift() {
return ptr;
}
bool NativeList::HasPending() {
return head_ != kInvalidPointer;
}
bool NativeList::HasPending() { return head_ != kInvalidPointer; }
} // namespace kernel
} // namespace xe