Skip to content

Commit 8f8663e

Browse files
committed
fix: add missing includes
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent b46a7f1 commit 8f8663e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/node_modules/@stdlib/stats/base/dnanmskrange/include/stdlib/stats/base/dnanmskrange.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#define STDLIB_STATS_BASE_DNANMSKRANGE_H
2121

2222
#include "stdlib/blas/base/shared.h"
23+
#include <stdint.h>
2324

2425
/*
2526
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.

lib/node_modules/@stdlib/stats/base/dnanmskrange/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "stdlib/math/base/assert/is_nan.h"
2121
#include "stdlib/strided/base/stride2offset.h"
2222
#include "stdlib/blas/base/shared.h"
23+
#include <stdint.h>
2324

2425
/**
2526
* Computes the range of a double-precision floating-point strided array according to a mask, ignoring `NaN` values.

0 commit comments

Comments
 (0)