Skip to content

Commit

Permalink
Merge pull request #2645 from roachsinai/patch-1
Browse files Browse the repository at this point in the history
fix: compile error: ‘int32_t’ is not a member of ‘std’
  • Loading branch information
jxt1234 authored Nov 15, 2023
2 parents b4b8242 + 476ee10 commit 8d5d8b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/backend/cpu/CPUFixedPoint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
#define CPUFixedPoint_HPP

#include <math.h>
#include <stdint.h>
#include <cstdint>
#include <limits>
#include <stdexcept>
#include <algorithm>
Expand Down

0 comments on commit 8d5d8b8

Please sign in to comment.