From 42c522954d15350295ff2a1924c76428a47bde27 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Thu, 26 Jan 2023 08:40:02 +0100 Subject: [PATCH] use struct instead of class for consistency --- src/runtime/c/pgf/data.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/c/pgf/data.h b/src/runtime/c/pgf/data.h index ae18de713..85925bedb 100644 --- a/src/runtime/c/pgf/data.h +++ b/src/runtime/c/pgf/data.h @@ -72,8 +72,8 @@ private: const char *m_filepath; }; -class PgfPGF; -class PgfConcr; +struct PgfPGF; +struct PgfConcr; #include "db.h" #include "text.h"