From fe139f287d504290655486b1c85e95697742a0d6 Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Fri, 2 Jun 2006 21:19:09 +0000 Subject: [PATCH] Remove C++ style comments (//) for old compilers. --- motorApp/MotorSrc/motor.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/motorApp/MotorSrc/motor.h b/motorApp/MotorSrc/motor.h index a6c9ee3d..348519c6 100644 --- a/motorApp/MotorSrc/motor.h +++ b/motorApp/MotorSrc/motor.h @@ -3,9 +3,9 @@ FILENAME... motor.h USAGE... Definitions and structures common to all levels of motorRecord support (i.e., record, device and driver). -Version: $Revision: 1.17 $ -Modified By: $Author: rivers $ -Last Modified: $Date: 2006-04-08 20:11:56 $ +Version: $Revision: 1.18 $ +Modified By: $Author: sluiter $ +Last Modified: $Date: 2006-06-02 21:19:09 $ */ /* @@ -123,12 +123,12 @@ typedef enum { /* Define, from top to bottom, how bit fields are packed. */ /* This works for VxWorks, SunPro, Linux g++, MS Visual C. */ #ifdef _WIN32 -#define LSB_First (TRUE) // LSB is packed first. +#define LSB_First (TRUE) /* LSB is packed first. */ #else #if #cpu(i386) && !#cpu(sparc) -#define LSB_First (TRUE) // LSB is packed first. +#define LSB_First (TRUE) /* LSB is packed first. */ #else -#define MSB_First (TRUE) // MSB is packed first. +#define MSB_First (TRUE) /* MSB is packed first. */ #endif #endif