aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-01-09 04:37:24 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-01-09 04:37:24 +0000
commitfeeb907835c33ec49308a32449dc0b6d07285e2a (patch)
tree7049e5037b1423af69239dca4373f764df76ea74 /externals/grill/flext/source
parent900871454af06db1d751e28cea56f59dc43d3c17 (diff)
""
svn path=/trunk/; revision=329
Diffstat (limited to 'externals/grill/flext/source')
-rwxr-xr-xexternals/grill/flext/source/flcwmax-x.h2
-rw-r--r--externals/grill/flext/source/flsupport.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/flext/source/flcwmax-x.h b/externals/grill/flext/source/flcwmax-x.h
index 59c677fb..6af4fb4d 100755
--- a/externals/grill/flext/source/flcwmax-x.h
+++ b/externals/grill/flext/source/flcwmax-x.h
@@ -8,7 +8,7 @@ WARRANTIES, see the file, "license.txt," in this distribution.
*/
-// This is the prefix file for CodeWarrior projects - OS X version
+/* This is the prefix file for CodeWarrior projects - OS X version */
#ifndef _FLEXT_CW_MAX_X_H
#define _FLEXT_CW_MAX_X_H
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index fd3992f8..14140c99 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -360,7 +360,7 @@ public:
//! Check whether the atom can be a pointer
static bool CanbePointer(const t_atom &a) { return IsInt(a); }
//! Access the pointer value (without type check)
- static void *GetPointer(const t_atom &a) { return NULL; }
+ static void *GetPointer(const t_atom &) { return NULL; }
//! Check for a pointer and get its value
static void *GetAPointer(const t_atom &a,void *def = NULL) { return IsInt(a)?(void *)GetInt(a):def; }
//! Set the atom to represent a pointer