Skip to content

Commit

Permalink
Fix error: using typedef-name after 'class'
Browse files Browse the repository at this point in the history
using typedef-name 'using QStringList = class QList<QString>' after
'class'
  • Loading branch information
GAlexDark committed Jun 15, 2023
1 parent 33327d7 commit aaaea07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/officeopenxml/opc/opcutils_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@

#include <QtOfficeOpenXml/officeopenxmlglobal.h>

class QString;
class QStringList;
#include <QString>
#include <QStringList>


namespace QtOfficeOpenXml {
namespace Opc {
Expand Down

0 comments on commit aaaea07

Please sign in to comment.