removed some couts

This commit is contained in:
Ken Martin 2002-09-05 08:22:47 -04:00
parent 7f76762c07
commit 7e0655f290
1 changed files with 9 additions and 10 deletions

View File

@ -90,16 +90,15 @@ int cmDynamicLoader::CloseLibrary(cmLibHandle lib)
void* cmDynamicLoader::GetSymbolAddress(cmLibHandle lib, const char* sym)
{
void *result=0;
if(NSIsSymbolNameDefined(sym)){
cout << sym << " is defined!" << endl;
NSSymbol symbol= NSLookupAndBindSymbol(sym);
if(symbol){
result = NSAddressOfSymbol(symbol);
}
}else{
cout << sym << " is not defined!" << endl;
}
void *result=0;
if(NSIsSymbolNameDefined(sym))
{
NSSymbol symbol= NSLookupAndBindSymbol(sym);
if(symbol)
{
result = NSAddressOfSymbol(symbol);
}
}
return result;
}