Commits

danra committed e2851a96268
Assert on calling getLength() on empty Identifier Calling ::strlen on nullptr is not allowed, but getLength() does not such check. We should either check for nullptr and return 0, or just assert assuming that calling getLength() on an empty Identifier is not intended and indicates a bug. Here the second approach was selected.