mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
C++, fix crash reported in #2536.
This commit is contained in:
parent
75b1b4c7c3
commit
12b83372ac
1
CHANGES
1
CHANGES
@ -53,6 +53,7 @@ Bugs fixed
|
||||
* The caption of figure is always put on center even if ``:align:`` was specified
|
||||
* #2526: LaTeX writer crashes if the section having only images
|
||||
* #2522: Sphinx touches mo files under installed directory that caused permission error.
|
||||
* #2536: C++, fix crash when an immediately nested scope has the same name as the current scope.
|
||||
|
||||
|
||||
Release 1.4.1 (released Apr 12, 2016)
|
||||
|
@ -2587,7 +2587,7 @@ class Symbol(object):
|
||||
s = s._find_named_symbol(identifier, templateParams,
|
||||
templateArgs, operator,
|
||||
templateShorthand=False,
|
||||
matchSelf=True)
|
||||
matchSelf=False)
|
||||
if not s:
|
||||
return None
|
||||
return s
|
||||
|
Loading…
Reference in New Issue
Block a user