Mod/Spreadsheet: Removed -Wsign-compare warnings.

This commit is contained in:
Eivind Kvedalen 2015-08-31 23:48:43 +02:00 committed by wmayer
parent 4d9af51470
commit e0f3ab2473

View File

@ -126,8 +126,7 @@ public:
const std::string & getPropertyName() const { return components[propertyIndex].component; }
const Component & getPropertyComponent(int i) const { assert(i >=0 && i < components.size()); return components[propertyIndex + i]; }
const Component & getPropertyComponent(std::size_t i) const { assert(i < components.size()); return components[propertyIndex + i]; }
const std::string & getSubComponent(int i) const { assert(i >= 1); return components[propertyIndex - 1].component; }
std::string getSubPathStr() const;