Символ новой строки с обратной косой чертой в конце предупреждения файла

С помощью этого кода:

#include <iostream>


int main(int argc, char *argv[])
{

  return 0;
}


/** run2: A macro to call a function. */
#define run2( function, ctype, dim ) \
if ( operation == #function ) \
{ \
  if ( componentType == #ctype && Dimension == dim ) \
  { \
    typedef itk::Image< ctype, dim > ImageType; \
    function< ImageType >( inputFileName, outputFileName, radius, algorithm, useCompression ); \
    supported = true; \
  } \
}

я получаю предупреждение: обратная косая черта-новая строка в конце файла

Есть идеи, как убрать это?

Дэвид

11
задан David Doria 18 April 2011 в 20:06
поделиться