Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Coding style conformance

...

Code Block
bgColor#FFcccc
langcpp
class S {
  int Cc;
 
public:
  int f(int Ii) const { return Ii + Cc; }
};
 
void f() {
  S o;
  int i = o.f(10);
}

...

Code Block
bgColor#ccccff
langcpp
class S {
  int Cc;
 
public:
  S() : Cc(0) {}
  int f(int Ii) const { return Ii + Cc; }
};
 
void f() {
  S o;
  int i = o.f(10);
}

...