do some whitespace janitor work

This commit is contained in:
neingeist 2014-08-18 23:45:07 +02:00
parent 0e43b30736
commit 7db74eb991
13 changed files with 49 additions and 55 deletions

View file

@ -1,8 +1,7 @@
#include <cassert>
#include <iostream>
int main()
{
int main() {
int someInteger = 256;
short someShort;
long someLong;
@ -16,7 +15,7 @@ int main()
assert(someInteger == 514);
someShort = (short) someInteger;
assert((int) someShort == 514); // (short more than 1 byte)
assert((int) someShort == 514); // (short more than 1 byte)
someLong = someShort * 10000;
assert(someLong == 5140000l);