From b30cfaa24d28dfcf5ee67d33cb614c9800bbddd2 Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Sun, 24 Dec 2017 20:17:18 +0100 Subject: nxcomp/src/Log.h: NXLogStamp constructor should actually take a size_t-typed line parameter. --- nxcomp/src/Log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nxcomp') diff --git a/nxcomp/src/Log.h b/nxcomp/src/Log.h index 68f06bc66..68680697f 100644 --- a/nxcomp/src/Log.h +++ b/nxcomp/src/Log.h @@ -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(×tamp_, NULL); } -- cgit v1.2.3