From: jpr Date: Thu, 6 Jul 2006 13:23:14 +0000 (+0000) Subject: char *[] instead of char ** to avoid M$ troubles X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=548629d72ad2d560c5684e66d34aa9f3e4e50927;p=gdcm.git char *[] instead of char ** to avoid M$ troubles --- diff --git a/Testing/TestEmpty.cxx b/Testing/TestEmpty.cxx index b5c355bb..5126a8e6 100755 --- a/Testing/TestEmpty.cxx +++ b/Testing/TestEmpty.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestEmpty.cxx,v $ Language: C++ - Date: $Date: 2006/06/30 09:48:05 $ - Version: $Revision: 1.2 $ + Date: $Date: 2006/07/06 13:23:14 $ + Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -17,7 +17,7 @@ =========================================================================*/ // Just to know, at test time, if the dll is loadable -int TestEmpty(int , char ** ) +int TestEmpty(int ,char *[]) { return 0; }