This commit is contained in:
Than Ngo 2021-02-10 11:31:02 +01:00
parent a5c95acd27
commit 97ec8457c6
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ diff -up doxygen-1.9.1/src/docparser.cpp.me doxygen-1.9.1/src/docparser.cpp
g_initialStyleStack.push(sc);
g_styleStack.pop();
- sc = g_styleStack.top();
+ sc = !g_styleStack.empty() ? g_styleStack.top() : 0;
+ sc = !g_styleStack.isEmpty() ? g_styleStack.top() : 0;
}
}
}