Skip to content

Commit

Permalink
cstdint (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan authored Oct 27, 2023
1 parent 934b193 commit a91be5d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:

- name: "Build/Test" # contains slash so use quotes otherwise UB
run: |
wget https://github.com/PhilipDeegan/mkn/releases/download/latest/mkn_nix
wget https://github.com/mkn/mkn/releases/download/latest/mkn_nix
chmod +x mkn_nix
KLOG=3 ./mkn_nix clean build run -dtOp test -a "-std=c++17 -fPIC"
2 changes: 1 addition & 1 deletion .github/workflows/build_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:

- name: "Build/Test" # contains slash so use quotes otherwise UB
run: |
wget https://github.com/PhilipDeegan/mkn/releases/download/latest/mkn_osx
wget https://github.com/mkn/mkn/releases/download/latest/mkn_osx
chmod +x mkn_osx
KLOG=3 ./mkn_osx clean build run -dtOp test -a "-std=c++17 -fPIC"
2 changes: 1 addition & 1 deletion .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
MKN_CL_PREFERRED: 1
run: | # /bin/link interferes with cl/link.exe
bash -c "rm /bin/link"
bash -c "curl -Lo mkn.exe https://github.com/PhilipDeegan/mkn/releases/download/latest/mkn.exe"
bash -c "curl -Lo mkn.exe https://github.com/mkn/mkn/releases/download/latest/mkn.exe"
bash -c 'KLOG=3 ./mkn clean build run -dtKOp test -a "-EHsc -std:c++17"'
2 changes: 1 addition & 1 deletion inc/mkn/kul/byte.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef _MKN_KUL_BYTE_HPP_
#define _MKN_KUL_BYTE_HPP_

#include <stdint.h>
#include <cstdint>

namespace mkn {
namespace kul {
Expand Down
1 change: 1 addition & 0 deletions inc/mkn/kul/cli.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <iostream>
#include <string>
#include <vector>
#include <cstdint>

#include "mkn/kul/env.hpp"
#include "mkn/kul/except.hpp"
Expand Down
1 change: 1 addition & 0 deletions inc/mkn/kul/except.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef _MKN_KUL_EXCEPT_HPP_
#define _MKN_KUL_EXCEPT_HPP_

#include <cstdint>
#include <iostream>
#include <sstream>
#include <stdexcept>
Expand Down
1 change: 1 addition & 0 deletions inc/mkn/kul/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define _MKN_KUL_IO_HPP_

#include <time.h>
#include <cstdint>
#include <cstring>
#include <fstream>
#include <memory>
Expand Down

0 comments on commit a91be5d

Please sign in to comment.