Fix typos in assert message.

llvm-svn: 190034
This commit is contained in:
Nick Lewycky 2013-09-05 06:53:59 +00:00
parent 55ecb10e99
commit 62ae892bad
1 changed files with 1 additions and 1 deletions

View File

@ -970,7 +970,7 @@ public:
// modifiers
/// Goes up one level if Level > 0.
void pop() {
assert(State && "Cannot pop and end itertor!");
assert(State && "Cannot pop an end iterator!");
assert(State->Level > 0 && "Cannot pop an iterator with level < 1");
const directory_iterator end_itr;