fix gcc builds

This commit is contained in:
rjindael 2023-07-19 15:36:13 -07:00
parent ae4cbe9972
commit 5d7d5d68f4
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
3 changed files with 4 additions and 2 deletions

View File

@ -19,9 +19,9 @@ jobs:
- name: Install required packages - name: Install required packages
uses: awalsh128/cache-apt-pkgs-action@latest uses: awalsh128/cache-apt-pkgs-action@latest
with: with:
version: 3.0 version: 4.0
packages: >- packages: >-
clang build-essential
cmake cmake
ninja-build ninja-build
libboost-dev libboost-dev

View File

@ -2,6 +2,7 @@
#include <stdexcept> #include <stdexcept>
#include <string> #include <string>
#include <cstddef>
#include <OGRE/Ogre.h> #include <OGRE/Ogre.h>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>

View File

@ -1,6 +1,7 @@
#pragma once #pragma once
#include <map> #include <map>
#include <cstddef>
namespace RNR namespace RNR
{ {