Fix semantics of isEmpty()

This commit is contained in:
TheAssassin
2018-11-09 00:58:09 +01:00
parent 78e5d0858e
commit 169275e023
3 changed files with 7 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ public:
public:
bool isEmpty() {
return path.empty();
return sections.empty();
}
void assertPathIsNotEmptyAndFileExists() {