From f3536d24c477d6a51bfe97b00e0d1610543c3fce Mon Sep 17 00:00:00 2001 From: Tobias Langer Date: Thu, 6 Oct 2016 13:55:01 +0200 Subject: [PATCH] Added constness to execution count. --- template/defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/defines.h b/template/defines.h index 2e9feb8..7190368 100644 --- a/template/defines.h +++ b/template/defines.h @@ -34,5 +34,5 @@ const int {{name}}_length = sizeof({{name}}) / sizeof({{type}}); const int NUM_EXECUTIONS = {{executions}}; {{/executions}} {{^executions}} -int executions = 1; +const int NUM_EXECUTIONS = 1; {{/executions}} -- libgit2 0.26.0