| 1 | namespace NAMESPACE { |
|---|---|
| 2 | static int g_value = 0; |
| 3 | void DoSomeStuff() { |
| 4 | // A comment here |
| 5 | g_value++; // The line with code |
| 6 | } |
| 7 | |
| 8 | } // namespace NAMESPACE |
| 9 |
| 1 | namespace NAMESPACE { |
|---|---|
| 2 | static int g_value = 0; |
| 3 | void DoSomeStuff() { |
| 4 | // A comment here |
| 5 | g_value++; // The line with code |
| 6 | } |
| 7 | |
| 8 | } // namespace NAMESPACE |
| 9 |