use 4 space indent

This commit is contained in:
Fabian Jakobs 2011-02-04 07:32:44 +01:00
commit 3bf7247366

View file

@ -232,11 +232,11 @@ using namespace std;
int main ()
{
int a, b=3; /* foobar */
a = b;
a+=2; // equivalent to a=a+2
cout << a;
return 0;
int a, b=3; /* foobar */
a = b;
a+=2; // equivalent to a=a+2
cout << a;
return 0;
}
</script>