OSDN Git Service

prev git rm
authoro_ggy <o_ggy@users.sourceforge.jp>
Fri, 7 May 2010 03:11:02 +0000 (12:11 +0900)
committero_ggy <o_ggy@users.sourceforge.jp>
Fri, 7 May 2010 03:11:02 +0000 (12:11 +0900)
build/linux/Makefile.app.inc
sample/numeric/windows/Debug/main.obj [deleted file]
src/windows/Debug/dummy.obj [deleted file]
test/linux/vector_test
test/mof/math/vector_test.cpp
test/mof/math/vector_test.o

index 13b7eb0..5b8fdde 100644 (file)
@@ -26,7 +26,7 @@ distclean:    clean
        rm -f $(TARGET) $(test_TARGET)
 
 .cpp.o:
-       $(CXX) -c -o $@ $(CXXFLAGS) $<
+       $(CXX) -c -o $@  $(CXXFLAGS) $<
 
 .c.o:
        $(CC) -c -o $@ $(CFLAGS) $<
diff --git a/sample/numeric/windows/Debug/main.obj b/sample/numeric/windows/Debug/main.obj
deleted file mode 100644 (file)
index a5bc68b..0000000
Binary files a/sample/numeric/windows/Debug/main.obj and /dev/null differ
diff --git a/src/windows/Debug/dummy.obj b/src/windows/Debug/dummy.obj
deleted file mode 100644 (file)
index 40ead4f..0000000
Binary files a/src/windows/Debug/dummy.obj and /dev/null differ
index 69fbfe9..5f1f774 100755 (executable)
Binary files a/test/linux/vector_test and b/test/linux/vector_test differ
index c9425ed..37ee3c3 100644 (file)
@@ -2,7 +2,7 @@
 #include <iostream>
 #include <sstream>
 
-int main()
+/*int main()
 {
        mof::math::vector2 v(0,0), w(1,1);
        v[0] = 1;
@@ -17,4 +17,13 @@ int main()
        std::cout << ss.str();
        std::cout << "test success" << std::endl;
        return 0;
+}*/
+
+
+int main()
+{
+       mof::math::vector2 v,w;
+       v = v + w;
+       std::cout << sizeof(v) << std::endl;
+       return 0;
 }
index d3ef216..961c284 100644 (file)
Binary files a/test/mof/math/vector_test.o and b/test/mof/math/vector_test.o differ