Fix Forward Declarations for ActionPool and VarnodeData

This commit is contained in:
Florian Märkl 2019-09-02 15:35:55 +02:00
parent 6e8c48f180
commit 429bc9dad0
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
2 changed files with 2 additions and 2 deletions

View file

@ -199,7 +199,7 @@ public:
warnings_given = 8 ///< Set if a warning for this rule has been given before warnings_given = 8 ///< Set if a warning for this rule has been given before
}; };
private: private:
friend struct ActionPool; friend class ActionPool;
uint4 flags; ///< Properties enabled with \b this Rule uint4 flags; ///< Properties enabled with \b this Rule
uint4 breakpoint; ///< Breakpoint(s) enabled for \b this Rule uint4 breakpoint; ///< Breakpoint(s) enabled for \b this Rule
string name; ///< Name of the Rule string name; ///< Name of the Rule

View file

@ -37,7 +37,7 @@ enum spacetype {
class AddrSpace; class AddrSpace;
class AddrSpaceManager; class AddrSpaceManager;
class VarnodeData; struct VarnodeData;
class Translate; class Translate;
/// \brief A region where processor data is stored /// \brief A region where processor data is stored