structs not classes.
authorThiago Farina <tfarina@chromium.org>
Sun, 19 May 2013 16:02:48 +0000 (13:02 -0300)
committerThiago Farina <tfarina@chromium.org>
Sun, 19 May 2013 16:02:48 +0000 (13:02 -0300)
commitc74abd555746ef0d2eebd8ff4402dd76769bb63e
tree57ba7492ccf9a89d4a8d31940764bb26d0f86428
parentd45ed4fdaa5ca9335145ee6f88f765a7ae0a47f3
structs not classes.

For some reason that I do not, ninja prefers:

struct Foo {
  Foo();

 private:
  void Blah();
};

Rather than

class Foo {
 public:
  Foo();

 private:
  void Blah();
};

This catches the last two usages of "class" in the code base.

Signed-off-by: Thiago Farina <tfarina@chromium.org>
src/line_printer.h
src/ninja_test.cc