From 548629d72ad2d560c5684e66d34aa9f3e4e50927 Mon Sep 17 00:00:00 2001 From: jpr Date: Thu, 6 Jul 2006 13:23:14 +0000 Subject: [PATCH] char *[] instead of char ** to avoid M$ troubles --- Testing/TestEmpty.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.45.1