Commit b30cfaa2 authored by Mihai Moldovan's avatar Mihai Moldovan

nxcomp/src/Log.h: NXLogStamp constructor should actually take a size_t-typed line parameter.

parent 5ff87ca9
......@@ -105,7 +105,7 @@ class NXLogStamp
}
NXLogStamp(const char *file, const char *function, int line, NXLogLevel level) : file_(file), function_(function), line_(line), level_(level)
NXLogStamp(const char *file, const char *function, size_t line, NXLogLevel level) : file_(file), function_(function), line_(line), level_(level)
{
gettimeofday(&timestamp_, NULL);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment