Kaydet (Commit) 082c7cae authored tarafından Muhammet Kara's avatar Muhammet Kara

Add missing method hasUnsignedLongDependency()

m_unsignedLongDependency was already set but never used.

Behavior of Includes::Includes ctor is now in consistency with
the related switch cases in Includes::add (see: m_includeSalTypesH)

Change-Id: I4cca1bab014ac280b73b7532aadfd5ff2b0b9894
Reviewed-on: https://gerrit.libreoffice.org/57792Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
üst 96b338e6
...@@ -82,6 +82,9 @@ public: ...@@ -82,6 +82,9 @@ public:
bool hasLongDependency() const { return m_longDependency; } bool hasLongDependency() const { return m_longDependency; }
bool hasUnsignedLongDependency() const
{ return m_unsignedLongDependency; }
bool hasHyperDependency() const { return m_hyperDependency; } bool hasHyperDependency() const { return m_hyperDependency; }
bool hasUnsignedHyperDependency() const bool hasUnsignedHyperDependency() const
......
...@@ -57,7 +57,7 @@ Includes::Includes( ...@@ -57,7 +57,7 @@ Includes::Includes(
|| dependencies.hasShortDependency() || dependencies.hasShortDependency()
|| dependencies.hasUnsignedShortDependency() || dependencies.hasUnsignedShortDependency()
|| dependencies.hasLongDependency() || dependencies.hasLongDependency()
|| dependencies.hasUnsignedShortDependency() || dependencies.hasUnsignedLongDependency()
|| dependencies.hasHyperDependency() || dependencies.hasHyperDependency()
|| dependencies.hasUnsignedHyperDependency() || dependencies.hasUnsignedHyperDependency()
|| dependencies.hasCharDependency()), || dependencies.hasCharDependency()),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment