Oops, it doesn't do much good to declare a function as "static" in the .hxx

This commit is contained in:
curt
2003-08-11 19:42:08 +00:00
parent 0bf579cf27
commit d7d13e458c
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@
#include "extensions.hxx"
bool SGSearchExtensionsString(char *extString, char *extName) {
static bool SGSearchExtensionsString(char *extString, char *extName) {
// Returns GL_TRUE if the *extName string appears in the *extString string,
// surrounded by white spaces, or GL_FALSE otherwise.

View File

@@ -41,7 +41,7 @@ extern "C" {
#define APIENTRY
#endif
static bool SGSearchExtensionsString(char *extString, char *extName);
// static bool SGSearchExtensionsString(char *extString, char *extName);
bool SGIsOpenGLExtensionSupported(char *extName);
#ifdef __APPLE__