swh:1:snp:a6330e89b35f0959a588079a2c4dc65f44d6e08a
Raw File
Tip revision: 1bb4c7be11b2fb7a19aeedfffdbb341553aae9d2 authored by David Cole on 15 February 2011, 15:31:54 UTC
CMake 2.8.4
Tip revision: 1bb4c7b
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