Remove .gitignore do nothing is ignored.
[synfig.git] / ETL / trunk / test / smart_ptr.cpp
index 287ada5..663d882 100644 (file)
@@ -1,7 +1,7 @@
 /*! ========================================================================
 ** Extended Template and Library Test Suite
 ** Smart Pointer Template Class Test
-** $Id: smart_ptr.cpp,v 1.1.1.1 2005/01/04 01:31:48 darco Exp $
+** $Id$
 **
 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
 **
@@ -86,8 +86,8 @@ typedef list< other_obj_smart_ptr > other_obj_list;
 
 int smart_ptr_basic_test(void)
 {
-       printf("smart_ptr: Size of a smart_ptr: %d\n",sizeof(obj_smart_ptr));
-       printf("smart_ptr: Size of a reference_counter: %d\n",sizeof(etl::reference_counter));
+       printf("smart_ptr: Size of a smart_ptr: %u\n",(unsigned int)sizeof(obj_smart_ptr));
+       printf("smart_ptr: Size of a reference_counter: %u\n",(unsigned int)sizeof(etl::reference_counter));
 
 
        printf("smart_ptr: Basic test: ");
@@ -100,7 +100,7 @@ int smart_ptr_basic_test(void)
        if(my_test_obj::instance_count!=0)
        {
                printf("FAILED!\n");
-               printf(__FILE__":%d: on create/distroy, instance count=%d, should be zero.\n",__LINE__,my_test_obj::instance_count);
+               printf(__FILE__":%d: on create/destroy, instance count=%d, should be zero.\n",__LINE__,my_test_obj::instance_count);
                return 1;
        }
 
@@ -121,7 +121,7 @@ int smart_ptr_basic_test(void)
        if(my_test_obj::instance_count!=0)
        {
                printf("FAILED!\n");
-               printf(__FILE__":%d: on create/distroy, instance count=%d, should be zero.\n",__LINE__,my_test_obj::instance_count);
+               printf(__FILE__":%d: on create/destroy, instance count=%d, should be zero.\n",__LINE__,my_test_obj::instance_count);
                return 1;
        }
 
@@ -247,7 +247,7 @@ int smart_ptr_inheritance_test(void)
        return 0;
 }
 
-void test_func(etl::smart_ptr<my_test_obj> smart_ptr)
+void test_func(etl::smart_ptr<my_test_obj> smart_ptr __attribute__ ((unused)))
 {
 }
 
@@ -314,6 +314,6 @@ int main()
        error+=smart_ptr_general_use_test();
        error+=smart_ptr_inheritance_test();
        error+=loose_smart_ptr_test();
-       
+
        return error;
 }