Skip to content

Commit

Permalink
[mlir] Fix -Wunneeded-internal-declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
MaskRay committed Dec 24, 2019
1 parent 64c6bb3 commit 020ca0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/test/mlir-cpu-runner/include/mlir_runner_utils.h
Expand Up @@ -129,7 +129,7 @@ template <int N, int... Dims> struct StaticSizeMult<N, Dims...> {
static constexpr int value = N * StaticSizeMult<Dims...>::value;
};

static void printSpace(std::ostream &os, int count) {
static inline void printSpace(std::ostream &os, int count) {
for (int i = 0; i < count; ++i) {
os << ' ';
}
Expand Down

0 comments on commit 020ca0c

Please sign in to comment.