Remove unused parameter warnings.

Do not compile tokenizer; it's not being used, and does not work on win64 yet.
This commit is contained in:
castano
2008-04-09 09:06:19 +00:00
parent ebe8054728
commit 133ebfb282
3 changed files with 5 additions and 3 deletions

View File

@ -18,6 +18,8 @@ void * nv::mem::malloc(size_t size)
void * nv::mem::malloc(size_t size, const char * file, int line)
{
NV_UNUSED(file);
NV_UNUSED(line);
return ::malloc(size);
}