Skip to content

Commit 387a751

Browse files
committed
Add the missing cstdint include declaration
Signed-off-by: yamacir-kit <[email protected]>
1 parent 3fcbf3f commit 387a751

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Procedures for each standard are provided by the following R7RS-style libraries:
9191
cmake -B build -DCMAKE_BUILD_TYPE=Release
9292
cd build
9393
make package
94-
sudo apt install build/meevax_0.5.65_amd64.deb
94+
sudo apt install build/meevax_0.5.66_amd64.deb
9595
```
9696

9797
or
@@ -123,9 +123,9 @@ sudo rm -rf /usr/local/share/meevax
123123

124124
| Target Name | Description
125125
|-------------|-------------
126-
| `all` | Build shared-library `libmeevax.0.5.65.so` and executable `meevax`
126+
| `all` | Build shared-library `libmeevax.0.5.66.so` and executable `meevax`
127127
| `test` | Test executable `meevax`
128-
| `package` | Generate debian package `meevax_0.5.65_amd64.deb`
128+
| `package` | Generate debian package `meevax_0.5.66_amd64.deb`
129129
| `install` | Copy files into `/usr/local` directly
130130

131131
## Usage

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.65
1+
0.5.66

include/meevax/kernel/instruction.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#ifndef INCLUDED_MEEVAX_KERNEL_INSTRUCTION_HPP
1818
#define INCLUDED_MEEVAX_KERNEL_INSTRUCTION_HPP
1919

20+
#include <cstdint>
2021
#include <iostream>
2122

2223
namespace meevax

0 commit comments

Comments
 (0)