From 3abd7ddedfe5171c03edc1f8e6cc07078a064aac Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 3 Sep 2017 15:35:28 +0200 Subject: [PATCH] Configuration is a struct, not a class --- src/cpp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp.h b/src/cpp.h index aaae925..68750ce 100644 --- a/src/cpp.h +++ b/src/cpp.h @@ -1,3 +1,3 @@ -class Configuration; +struct Configuration; void writeHeader(const Configuration& conf); void writeCpp(const Configuration& conf);