C++: Format

This commit is contained in:
Mathias Vorreiter Pedersen
2020-04-14 11:39:44 +02:00
parent d8dcbe3cbd
commit 419b511ddb

View File

@@ -2,15 +2,16 @@
import cpp
/** An assignment to a variable with the value `0`. For example:
* ```
* int x;
* x = 0;
* ```
* but not:
* ```
* int x = 0;
* ```
/**
* An assignment to a variable with the value `0`. For example:
* ```
* int x;
* x = 0;
* ```
* but not:
* ```
* int x = 0;
* ```
*/
class ZeroAssignment extends AssignExpr {
ZeroAssignment() {