Skip to content

Commit

Permalink
Fix macos compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Oct 19, 2023
1 parent 1f32310 commit 904cd24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/besm-666/memory/phys-mem-device.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <memory>
#include <stdexcept>
#include <utility>
#include <string>

#include "besm-666/riscv-types.hpp"
#include "besm-666/util/dummy-exception.hpp"
Expand Down
2 changes: 1 addition & 1 deletion include/besm-666/memory/ram.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class RAMPageAllocator::Chunk final : public INonCopyable {

class RAM final : public mem::IPhysMemDevice {
public:
RAM(RV64Size ramSize, size_t pageSize, size_t chunkSize);
RAM(size_t ramSize, size_t pageSize, size_t chunkSize);
RAM(RAM &&other);
virtual ~RAM() {}

Expand Down

0 comments on commit 904cd24

Please sign in to comment.