Fix insufficient forward declaration

It is not sufficient with a forward declaration of QString here. Since
the vector is created in PdmFieldCapability::attributes() the size of
QString must be known at that point.

closes #10950
This commit is contained in:
Eirik Marthinsen 2023-12-13 14:27:50 +01:00 committed by Magne Sjaastad
parent ccdad6aaaf
commit 77e5d642e9

View File

@ -2,7 +2,7 @@
#include <vector>
class QString;
#include <QString>
namespace caf
{