summaryrefslogtreecommitdiff
path: root/test/Unit/ipow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Unit/ipow.cpp')
-rw-r--r--test/Unit/ipow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Unit/ipow.cpp b/test/Unit/ipow.cpp
index 91cff22..b2dd985 100644
--- a/test/Unit/ipow.cpp
+++ b/test/Unit/ipow.cpp
@@ -11,7 +11,7 @@
#include <iostream>
#include "Numerical/Integer.h"
-bool testPowI4(int32_t x, int32_t y, int32_t expected) {
+static bool testPowI4(int32_t x, int32_t y, int32_t expected) {
x = libflang_pow_i4_i4(x, y);
if(x != expected)
std::cout << "Error in libflang_pow_i4_i4 - expected " << expected