swh:1:snp:a6330e89b35f0959a588079a2c4dc65f44d6e08a
Raw File
Tip revision: 8c89b5e2dcab146557c6eac0c32e2ab813ae6428 authored by Bill Hoffman on 26 February 2010, 18:45:23 UTC
CMake 2.8.1
Tip revision: 8c89b5e
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