Skip to content

Commit

Permalink
Fix windows build (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fancy2209 authored Sep 12, 2024
1 parent 393155f commit 4c8e10f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure stuff
run: |
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
build-widle:
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Configure stuff
run: |
choco install ninja
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
2 changes: 2 additions & 0 deletions include/spike/app/cache.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@
#include "spike/io/bincore_fwd.hpp"
#include "spike/util/supercore.hpp"
#include <memory>
#include <string>
#include <string_view>
#include <thread>
#include <variant>


struct CacheGeneratorImpl;
struct HybridLeaf;
struct ZipEntryLeaf;
Expand Down
1 change: 1 addition & 0 deletions include/spike/reflect/detail/reflector_type.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "../reflector_fwd.hpp"
#include "spike/crypto/jenkinshash.hpp"
#include "spike/util/supercore.hpp"
#include <string>

struct ReflType;

Expand Down
1 change: 1 addition & 0 deletions include/spike/reflect/reflector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "detail/reflector_class.hpp"
#include "detail/reflector_enum.hpp"
#include "detail/reflector_type.hpp"
#include <string>

class Reflector {
friend class ReflectorFriend;
Expand Down
1 change: 1 addition & 0 deletions include/spike/reflect/reflector_io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "reflector.hpp"
#include "spike/io/bincore_fwd.hpp"
#include <vector>
#include <string>

class ReflectorIO {
typedef std::vector<const reflectorStatic *> classes_type;
Expand Down
1 change: 1 addition & 0 deletions include/spike/uni/model.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "format.hpp"
#include "list.hpp"
#include "spike/type/matrix44.hpp"
#include <string>

namespace uni {
struct RTSValue;
Expand Down

0 comments on commit 4c8e10f

Please sign in to comment.