Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Expressions/EXP_ConstExpr.h')
-rw-r--r--source/gameengine/Expressions/EXP_ConstExpr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Expressions/EXP_ConstExpr.h b/source/gameengine/Expressions/EXP_ConstExpr.h
index b4456dacdf3..ddc7df14ff1 100644
--- a/source/gameengine/Expressions/EXP_ConstExpr.h
+++ b/source/gameengine/Expressions/EXP_ConstExpr.h
@@ -22,12 +22,12 @@
#include "EXP_Expression.h"
#include "EXP_Value.h" // Added by ClassView
-class CConstExpr : public CExpression
+class CConstExpr : public CExpression
{
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CConstExpr,CExpression)
public:
virtual bool MergeExpression(CExpression* otherexpr);
-
+
void BroadcastOperators(VALUE_OPERATOR op);
virtual unsigned char GetExpressionID();
@@ -40,7 +40,7 @@ public:
CConstExpr(CValue* constval);
CConstExpr();
virtual ~CConstExpr();
-
+
private:
CValue* m_value;