[Base] Console and BaseClass: remove unused includes

This commit is contained in:
Uwe
2022-02-23 02:30:55 +01:00
committed by wmayer
parent e583eec264
commit c08c4c12ef
3 changed files with 7 additions and 14 deletions

View File

@@ -27,7 +27,6 @@
# include <cassert>
#endif
/// Here the FreeCAD includes sorted by Base,App,Gui......
#include "BaseClass.h"
#include "PyObjectBase.h"

View File

@@ -24,28 +24,24 @@
#include "PreCompiled.h"
#ifndef _PreComp_
# include <time.h>
# include <stdio.h>
# if defined(FC_OS_WIN32)
# include <io.h>
# include <windows.h>
# elif defined(FC_OS_LINUX) || defined(FC_OS_MACOSX)
# include <unistd.h>
# endif
# include "fcntl.h"
# include <cstring>
#endif
#include "Console.h"
#include "Exception.h"
#include "frameobject.h"
#include "PyObjectBase.h"
#include <QCoreApplication>
#include <frameobject.h>
using namespace Base;
//=========================================================================
namespace Base {

View File

@@ -27,13 +27,11 @@
#include <Base/PyExport.h>
#include <Base/Stream.h>
//#pragma warning(disable: 4786) // specifier longer then 255 chars
#include <assert.h>
#include <set>
#include <map>
#include <string>
#include <cstring>
#include <sstream>
#include <chrono>
#include <map>
#include <set>
#include <string>
#include <sstream>
//FIXME: ISO C++11 requires at least one argument for the "..." in a variadic macro
#if defined(__clang__)