binpac: Add pre-commit hooks and run clang-format on everything

This commit is contained in:
Tim Wojtulewicz 2022-07-07 11:49:24 -07:00
parent 090ac0a6e0
commit 090325df40
91 changed files with 3086 additions and 3665 deletions

View file

@ -1,13 +1,14 @@
#ifndef pac_output_h
#define pac_output_h
#include <stdio.h>
#include <stdarg.h>
#include <stdio.h>
#include <string>
using namespace std;
class OutputException {
class OutputException
{
public:
OutputException(const char* arg_msg);
~OutputException();
@ -15,9 +16,10 @@ public:
protected:
string msg;
};
};
class Output {
class Output
{
public:
Output(string filename);
~Output();
@ -35,6 +37,6 @@ protected:
FILE* fp;
int indent_;
};
};
#endif /* pac_output_h */