From 24e2017692abf167702d428cd6fcb9cd232793f7 Mon Sep 17 00:00:00 2001 From: Alexander Frink Date: Thu, 3 Feb 2000 00:56:21 +0000 Subject: [PATCH] bug fix for output of interactive expression in ginaccint --- ginac/ex.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ginac/ex.h b/ginac/ex.h index b63c3726..974bfde3 100644 --- a/ginac/ex.h +++ b/ginac/ex.h @@ -312,6 +312,7 @@ protected: } last_created_or_assigned_bp=bp; ++last_created_or_assigned_bp->refcount; + last_created_or_assigned_exp=(long)(void *)(this); } #endif // def OBSCURE_CINT_HACK @@ -320,7 +321,9 @@ protected: public: basic *bp; #ifdef OBSCURE_CINT_HACK - static basic *last_created_or_assigned_bp; + static basic * last_created_or_assigned_bp; + static basic * dummy_bp; + static long last_created_or_assigned_exp; #endif // def OBSCURE_CINT_HACK }; -- 2.44.0