Revision edf200a50b7f5857a6230239917024bca6748060 authored by Brad King on 13 March 2013, 17:34:06 UTC, committed by CMake Topic Stage on 13 March 2013, 17:34:06 UTC
1823ab4 ExternalData: Preserve escaped semicolons during argument expansion

2 parent s 0707e0d + 1823ab4
Raw File
One.c
void TwoFunc();

void OneFunc()
{
  static int i = 0;
  ++i;
  if( i==1 ) {
    TwoFunc();
  }
}
back to top