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:
@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user