servo: Merge #13112 - stylo: Fix incorrect flag syntax in regen.py (from bholley:regenpy_fix); r=emilio

Source-Repo: https://github.com/servo/servo
Source-Revision: a338beaa7012f1cbfeebe559e58d1f0186c2cdee
This commit is contained in:
Bobby Holley 2016-08-29 17:04:44 -05:00
Родитель 0c762c1f7a
Коммит 54d3d46a5d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -321,7 +321,7 @@ def build(objdir, target_name, debug, debugger, kind_name=None,
flags.append("{}Strong".format(ty))
flags.append("--raw-line")
flags.append("pub type {0}Strong = ::sugar::refptr::Strong<{0}>;".format(ty))
flags.append("-blacklist-type")
flags.append("--blacklist-type")
flags.append("{}Borrowed".format(ty))
flags.append("--raw-line")
flags.append("pub type {0}Borrowed<'a> = ::sugar::refptr::Borrowed<'a, {0}>;".format(ty))