Skip to content

Commit

Permalink
Include order fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
benvanik committed Dec 27, 2015
1 parent 6b92c1a commit 0a31680
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .clang-format
Expand Up @@ -2,3 +2,4 @@
BasedOnStyle: Google
DerivePointerAlignment: false
PointerAlignment: Left
SortIncludes: true
3 changes: 2 additions & 1 deletion src/xenia/base/memory_test.cc
Expand Up @@ -7,9 +7,10 @@
******************************************************************************
*/

#include "third_party/catch/include/catch.hpp"
#include "xenia/base/memory.h"

#include "third_party/catch/include/catch.hpp"

TEST_CASE("copy_and_swap_16_aligned", "Copy and Swap") {
// TODO(benvanik): tests.
REQUIRE(true == true);
Expand Down
3 changes: 2 additions & 1 deletion src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc
Expand Up @@ -7,6 +7,8 @@
******************************************************************************
*/

#include "xenia/kernel/xboxkrnl/xboxkrnl_video.h"

#include "xenia/base/logging.h"
#include "xenia/emulator.h"
#include "xenia/gpu/graphics_system.h"
Expand All @@ -15,7 +17,6 @@
#include "xenia/kernel/util/shim_utils.h"
#include "xenia/kernel/xboxkrnl/xboxkrnl_private.h"
#include "xenia/kernel/xboxkrnl/xboxkrnl_rtl.h"
#include "xenia/kernel/xboxkrnl/xboxkrnl_video.h"
#include "xenia/xbox.h"

namespace xe {
Expand Down
3 changes: 2 additions & 1 deletion src/xenia/kernel/xevent.cc
Expand Up @@ -7,9 +7,10 @@
******************************************************************************
*/

#include "xenia/base/logging.h"
#include "xenia/kernel/xevent.h"

#include "xenia/base/logging.h"

namespace xe {
namespace kernel {

Expand Down

0 comments on commit 0a31680

Please sign in to comment.