aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Yakimowich-Payne <jyapayne@gmail.com>2020-05-12 16:32:44 -0600
committergenotrance <dev@genotrance.com>2020-05-15 11:20:00 -0500
commit1df2943cf80147a7d32f1edff5572d92162c663e (patch)
treee77298c10b2b2a0742c3c600fe36428c6234af4a
parent32c98435486cff69f7ecbcfb2be3c8f1739fe177 (diff)
downloadnimterop-1df2943cf80147a7d32f1edff5572d92162c663e.tar.gz
nimterop-1df2943cf80147a7d32f1edff5572d92162c663e.zip
Change to static const
-rw-r--r--tests/include/tast2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h
index f28c003..d39e8ea 100644
--- a/tests/include/tast2.h
+++ b/tests/include/tast2.h
@@ -50,7 +50,7 @@ extern "C" {
#define ALLSHL (SHL1 | SHL2 | SHL3)
// const not supported yet
-const int SOME_CONST = 8;
+static const int SOME_CONST = 8;
struct some_struct_s
{