Skip to content

Commit

Permalink
Another attempt at reordering headers
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEricNitschke committed Apr 12, 2024
1 parent a345252 commit 78c640e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Lint with cpplint
run: |
pip install cpplint
cpplint */*.cpp */*.h
cpplint */*.cpp */*.hpp
- name: Prepare cmake
run: |
cmake -S . -B build
Expand Down
3 changes: 2 additions & 1 deletion tictactoe_cpp/src/tictactoe.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Copyright 2022-2024 Jan-Eric Nitschke. All rights reserved.

#include <Random.hpp>
#include <tictactoe.hpp>

#include <algorithm>
Expand All @@ -12,6 +11,8 @@
#include <unordered_map>
#include <vector>

#include <Random.hpp>

std::ostream &operator<<(std::ostream &os, const GameState &obj) {
os << static_cast<std::underlying_type<GameState>::type>(obj);
return os;
Expand Down

0 comments on commit 78c640e

Please sign in to comment.