From: malaterre Date: Thu, 9 Oct 2003 11:29:17 +0000 (+0000) Subject: FIX: VC++ warning about return type in main X-Git-Tag: Version0.3.1~124 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=8025df97287221b537f940925f3f87730b0d1e48;p=gdcm.git FIX: VC++ warning about return type in main --- diff --git a/Testing/TestBug.cxx b/Testing/TestBug.cxx index a7fc6b9b..51383677 100644 --- a/Testing/TestBug.cxx +++ b/Testing/TestBug.cxx @@ -10,6 +10,8 @@ int main(int argc, char* argv[]) else e1 = new gdcmHeader("test.acr"); e1->PrintPubDict(); + + return 0; } diff --git a/Testing/TestChangeHeader.cxx b/Testing/TestChangeHeader.cxx index 35d58950..abaf2f6e 100644 --- a/Testing/TestChangeHeader.cxx +++ b/Testing/TestChangeHeader.cxx @@ -72,6 +72,8 @@ int main(int argc, char* argv[]) { printf ("WriteDCM\n"); //f1->WriteDcmImplVR(resultat); f1->WriteAcr(resultat); + + return 0; } diff --git a/Testing/TestHash.cxx b/Testing/TestHash.cxx index 3deee03c..19112e09 100644 --- a/Testing/TestHash.cxx +++ b/Testing/TestHash.cxx @@ -33,4 +33,6 @@ int main() { //http://www.developer.com/net/cplus/article.php/10919_2119781_3 // // domage que ca ne marche pas ... + + return 0; }