Revision be36bfd65d53962c7ba975382bd911e0857f6a33 authored by Domen Vrankar on 10 February 2015, 22:03:06 UTC, committed by Brad King on 11 February 2015, 14:56:27 UTC
The file(GLOB_RECURSE) call added by commit 3ec02547 (CPackRPM: Allow
multiple path relocation prefixes for one package, 2015-01-21) should
not follow directory symlinks, so make sure CMP0009 is set to NEW.
1 parent 3d99355
Raw File
simpleWe.cpp
#include <stdio.h>

class Foo
{
public:
  Foo()
    {
      printf("This one has nonstandard extension\n");
    }
  int getnum() { return 0; }
};

int bar()
{
  Foo f;
  return f.getnum();
}
back to top