aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flclass.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-01-21 04:32:12 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-01-21 04:32:12 +0000
commitf4b63ea3357f379a6e53d3f1e7e6ac43a1b91e49 (patch)
tree830ee8d979d4af3d7542f5f67d8c1666ddece472 /externals/grill/flext/source/flclass.h
parentf734613d6fac0f1f4b5f0f6a1afbad4436e90863 (diff)
""
svn path=/trunk/; revision=349
Diffstat (limited to 'externals/grill/flext/source/flclass.h')
-rw-r--r--externals/grill/flext/source/flclass.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/externals/grill/flext/source/flclass.h b/externals/grill/flext/source/flclass.h
index bfae95c6..4aa17a7d 100644
--- a/externals/grill/flext/source/flclass.h
+++ b/externals/grill/flext/source/flclass.h
@@ -190,13 +190,7 @@ public:
class outlet;
//! Get pointer to outlet (not in the constructor!)
- outlet *GetOut(int ix) const {
-#ifdef FLEXT_DEBUG
- return (outlets && ix < (procattr?outcnt+1:outcnt))?outlets[ix]:NULL;
-#else
- return outlets[ix];
-#endif
- }
+ outlet *GetOut(int ix) const { return outlets[ix]; }
#endif
int GetOutAttr() const { return procattr?CntOut():0; }
@@ -240,7 +234,7 @@ public:
void ToOutList(int n,const AtomList &list) const { ToOutList(n,list.Count(),list.Atoms()); }
//! Output anything (to appointed outlet)
- void ToOutAnything(outlet *o,const t_symbol *s,int argc,const t_atom *argv) const;
+// void ToOutAnything(outlet *o,const t_symbol *s,int argc,const t_atom *argv) const;
//! Output anything (index n starts with 0)
void ToOutAnything(int n,const t_symbol *s,int argc,const t_atom *argv) const; // { outlet *o = GetOut(n); if(o) ToOutAnything(o,const_cast<t_symbol *>(s),argc,argv); }
//! Output anything (index n starts with 0)