pull/800/head
Paul Holland 2016-01-28 08:06:52 -08:00
parent bac6067869
commit c571b92dd7
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ bool isComment( T *in, T *end ) {
if ( in+1!=end ) {
if ( *( in+1 )=='/' ) {
char *drive( ( in+2 ) );
if ( isUpperCase<T>( *drive )||isLowerCase<T>( *drive )&&*( drive+1 )=='/' ) {
if ( (isUpperCase<T>( *drive )||isLowerCase<T>( *drive ))&&*( drive+1 )=='/' ) {
return false;
} else {
return true;