clang-format

This commit is contained in:
Ben Vanik
2015-05-04 19:03:30 -07:00
parent 0f14575592
commit 442e5f2840
7 changed files with 36 additions and 29 deletions

View File

@@ -29,13 +29,9 @@ XModule::XModule(KernelState* kernel_state, const std::string& path)
}
}
XModule::~XModule() {
kernel_state_->UnregisterModule(this);
}
XModule::~XModule() { kernel_state_->UnregisterModule(this); }
void XModule::OnLoad() {
kernel_state_->RegisterModule(this);
}
void XModule::OnLoad() { kernel_state_->RegisterModule(this); }
X_STATUS XModule::GetSection(const char* name, uint32_t* out_section_data,
uint32_t* out_section_size) {