Remove code formatters.

- Maybe these should be returned if the output is a diff with the
  current file.
- bcpp, uncrustify, gofmt, clang_format.
This commit is contained in:
Andrew Hamilton 2019-05-17 11:10:45 +10:00
parent a7bec363af
commit 5fcdd0ea50
9 changed files with 10 additions and 83 deletions

View file

@ -1,8 +0,0 @@
(B#include(B (B<iostream>(B (B
(B (B
(Busing(B (Bnamespace(B std;(B (B
(B (B
(Bint(B (Bmain(B()(B (B
(B{(B (B
(B cout << (B"Hello World"(B << endl;(B
(B}(B (B

View file

@ -1,7 +0,0 @@
(B#include(B (B<stdio.h>(B (B
(B (B
(Bint(B (Bmain(B()(B (B
(B{(B (B
(B printf((B"Hello World\n"(B);(B
(B (Breturn(B (B0(B;(B (B
(B}(B (B

View file

@ -1,8 +0,0 @@
(B#include(B (B<iostream>(B (B
(B (B
(Busing(B (Bnamespace(B std;(B (B
(B (B
(Bint(B (Bmain(B()(B (B
(B{(B (B
(B cout << (B"Hello World"(B << endl;(B
(B}(B (B

View file

@ -1,6 +0,0 @@
(B#ifndef HELLO_H(B
(B#define HELLO_H(B
(B (B
(Bvoid(B (Bhello(B();(B (B
(B (B
(B#endif(B (B