Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compability issues on Windows #22

Open
wants to merge 1 commit into
base: LinkStage3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions src/App/ExpressionParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,25 +366,6 @@ class AppExport PyObjectExpression : public Expression {
PyObject *pyObj = 0;
};

/**
* Class implementing a boolean expression.
*
*/

class AppExport BooleanExpression : public NumberExpression {
EXPR_TYPESYSTEM_HEADER();
public:
static ExpressionPtr create(const App::DocumentObject *owner, bool value);

protected:
BooleanExpression(const App::DocumentObject *_owner, const Base::Quantity &q)
:NumberExpression(_owner,q)
{}
virtual Py::Object _getPyValue(int *jumpCode=0) const override;
virtual ExpressionPtr _copy() const;
};


/**
* Class implementing an infix expression.
*
Expand Down
Loading