[Base] Exception and FileInfo: remove unused includes

This commit is contained in:
Uwe
2022-02-23 02:53:16 +01:00
committed by wmayer
parent 99bf963f54
commit 581a66aa2d
3 changed files with 4 additions and 18 deletions

View File

@@ -24,12 +24,9 @@
#include "PreCompiled.h"
#include <typeinfo>
#include "Exception.h"
#include "Console.h"
#include "PyObjectBase.h"
#include <CXX/Objects.hxx>
FC_LOG_LEVEL_INIT("Exception", true, true)

View File

@@ -25,12 +25,11 @@
#ifndef BASE_EXCEPTION_H
#define BASE_EXCEPTION_H
#include <exception>
#include <stdexcept>
#include <string>
#include <csignal>
#include "FileInfo.h"
#include <string>
#include "BaseClass.h"
#include "FileInfo.h"
typedef struct _object PyObject;

View File

@@ -27,31 +27,21 @@
#ifndef _PreComp_
# include <algorithm>
# include <cassert>
# include <cstdio>
# include <cstdlib>
# include <fstream>
# include <climits>
# include <cstring>
# if defined (FC_OS_LINUX) || defined(FC_OS_CYGWIN) || defined(FC_OS_MACOSX) || defined(FC_OS_BSD)
# include <dirent.h>
# include <unistd.h>
# include <sys/stat.h>
# elif defined (FC_OS_WIN32)
# include <direct.h>
# include <io.h>
# include <Windows.h>
# endif
#endif
#include "FileInfo.h"
#include "Exception.h"
#include "Stream.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <cstdio>
#include <cerrno>
#include <cstring>
using namespace Base;