Skip to content

Commit

Permalink
fix: missing cstdint
Browse files Browse the repository at this point in the history
  • Loading branch information
wst24365888 committed Jul 27, 2024
1 parent 9a02f70 commit b35f529
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/decode/zigzag_decode_scalar.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "branch_prediction.h"
#include <config.h>
#include <iostream>
#include <cstdint>

#ifdef PRINT_BENCHMARK
#include <chrono>
Expand Down
1 change: 1 addition & 0 deletions src/decode/zigzag_decode_vectorized.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "branch_prediction.h"
#include <config.h>
#include <iostream>
#include <cstdint>

#ifdef __NEON__
#include "sse2neon.h"
Expand Down
1 change: 1 addition & 0 deletions src/encode/zigzag_encode_scalar.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "branch_prediction.h"
#include <config.h>
#include <iostream>
#include <cstdint>

#ifdef PRINT_BENCHMARK
#include <chrono>
Expand Down
1 change: 1 addition & 0 deletions src/encode/zigzag_encode_vectorized.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "branch_prediction.h"
#include <config.h>
#include <iostream>
#include <cstdint>

#ifdef __NEON__
#include "sse2neon.h"
Expand Down

0 comments on commit b35f529

Please sign in to comment.