From 65a1f86456ed9451bb7186857e05566e723553a0 Mon Sep 17 00:00:00 2001 From: Kp Date: Sat, 26 Oct 2013 19:09:44 +0000 Subject: [PATCH] Mark aipath test functions as used --- similar/main/aipath.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/similar/main/aipath.cpp b/similar/main/aipath.cpp index d8943712c..e2f099520 100644 --- a/similar/main/aipath.cpp +++ b/similar/main/aipath.cpp @@ -1501,7 +1501,8 @@ void attempt_to_resume_path(object *objp) #ifdef EDITOR int Test_size = 1000; -void test_create_path_many(void) +static void test_create_path_many(void) __attribute_used; +static void test_create_path_many(void) { point_seg point_segs[200]; short num_points; @@ -1516,7 +1517,8 @@ void test_create_path_many(void) } -void test_create_path(void) +static void test_create_path(void) __attribute_used; +static void test_create_path(void) { point_seg point_segs[200]; short num_points; @@ -1526,7 +1528,8 @@ void test_create_path(void) } // For all segments in mine, create paths to all segments in mine, print results. -void test_create_all_paths(void) +static void test_create_all_paths(void) __attribute_used; +static void test_create_all_paths(void) { int start_seg, end_seg; short resultant_length;