瀏覽代碼

tests: Make functions used in tests static

Ole Krüger 10 年之前
父節點
當前提交
55933e6216
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      tests/stack.cpp

+ 3 - 0
tests/stack.cpp

@@ -3,14 +3,17 @@
 #include <lua.hpp>
 #include <luwra.hpp>
 
+static
 int test_function_1(int a, int b) {
 	return a - b;
 }
 
+static
 int test_function_2(int a, int b, int c) {
 	return a + b * c;
 }
 
+static
 void test_function_3(int) {
 
 }