Remove some unnecessary #includes from binpac source files

This commit is contained in:
Tim Wojtulewicz 2025-09-02 10:39:05 -07:00
parent deeca84332
commit adb28453a7
27 changed files with 19 additions and 54 deletions

View file

@ -3,8 +3,8 @@
#ifndef pac_output_h
#define pac_output_h
#include <stdarg.h>
#include <stdio.h>
#include <cstdarg>
#include <cstdio>
#include <string>
using namespace std;
@ -12,7 +12,7 @@ using namespace std;
class OutputException {
public:
OutputException(const char* arg_msg);
~OutputException();
~OutputException() = default;
const char* errmsg() const { return msg.c_str(); }
protected: