add missing std:: namespace to build on Debian 10

This commit is contained in:
wmayer
2019-08-21 23:56:46 +02:00
parent 411827fbae
commit a79ce8d823
7 changed files with 8 additions and 0 deletions

View File

@@ -81,6 +81,7 @@
#include <Base/Vector3D.h>
using namespace Drawing;
using namespace std;
TopoDS_Edge DrawingOutput::asCircle(const BRepAdaptor_Curve& c) const
{

View File

@@ -83,6 +83,7 @@
#include <Mod/Part/App/Geom2d/OffsetCurve2dPy.h>
using namespace Part;
using namespace std;
extern const char* gce_ErrorStatusText(gce_ErrorType et);

View File

@@ -40,6 +40,8 @@
#include <Mod/Part/App/TopoShapePy.h>
#include <App/Application.h>
using namespace std;
namespace Raytracing {
class Module : public Py::ExtensionModule<Module>

View File

@@ -38,6 +38,7 @@
using namespace Raytracing;
using namespace std;
PROPERTY_SOURCE(Raytracing::LuxFeature, Raytracing::RaySegment)

View File

@@ -36,6 +36,7 @@
using namespace Raytracing;
using namespace std;
PROPERTY_SOURCE(Raytracing::RayFeature, Raytracing::RaySegment)

View File

@@ -61,6 +61,7 @@
#include "Cosmetic.h"
using namespace TechDraw;
using namespace std;
LineFormat::LineFormat()
{

View File

@@ -80,6 +80,7 @@
#include "Geometry.h"
using namespace TechDraw;
using namespace std;
// Collection of Geometric Features
Wire::Wire()