From 66c858c26992818ed66b3a730c10a11a7644d654 Mon Sep 17 00:00:00 2001 From: Elena Pourmal Date: Tue, 9 Mar 2004 16:15:24 -0500 Subject: [svn-r8241] Purpose: Bug fix (#71 in Bugzilla DB) Description: C++ comment was used. That caused a problem for a user (see bug description) Solution: Changed comment to C type Platforms tested: eirene Misc. update: --- src/H5api_adpt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5api_adpt.h b/src/H5api_adpt.h index 6297f47..d2af250 100644 --- a/src/H5api_adpt.h +++ b/src/H5api_adpt.h @@ -46,8 +46,8 @@ #define H5TEST_DLLVAR extern #endif /* _HDF5TESTDLL_ */ -// Added to export or to import C++ APIs - BMR (02-15-2002) -#if defined(HDF5_CPPDLL_EXPORTS) // this name is generated at creation +/* Added to export or to import C++ APIs - BMR (02-15-2002) */ +#if defined(HDF5_CPPDLL_EXPORTS) /* this name is generated at creation */ #define H5_DLLCPP __declspec(dllexport) #elif defined(HDF5CPP_USEDLL) #define H5_DLLCPP __declspec(dllimport) -- cgit v0.12