From 945c45ad50ed31e3acb96fdaafb21640c4669f12 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Fri, 21 Apr 2017 09:16:48 -0400 Subject: Prefer #if defined to #ifdef Our new CPP linter enforces this. --- rts/ProfilerReportJson.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rts/ProfilerReportJson.h') diff --git a/rts/ProfilerReportJson.h b/rts/ProfilerReportJson.h index ace2e581e8..5e7271f70e 100644 --- a/rts/ProfilerReportJson.h +++ b/rts/ProfilerReportJson.h @@ -15,7 +15,7 @@ #include "BeginPrivate.h" -#ifdef PROFILING +#if defined(PROFILING) void writeCCSReportJson(FILE *prof_file, CostCentreStack const *ccs, -- cgit v1.2.1