浏览代码

bug in __1 handling

Former-commit-id: 302f93567d93d421641cfa7b55153d8f2d92a0da
Alec Jacobson 8 年之前
父节点
当前提交
cc3cce1474
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts/autoexplicit.sh

+ 1 - 1
scripts/autoexplicit.sh

@@ -34,7 +34,7 @@ while read line; do
   #echo "before = $before"
   after=`sed '1,/^\/\/ Explicit template specialization$/d' $cpp`;
   #echo "after = $after"
-  explicit=`echo "template $symbol;" | sed -e "s/std::__1/std::/g"`
+  explicit=`echo "template $symbol;" | sed -e "s/std::__1::/std::/g"`
   #echo "$explicit"
   if grep -F "$explicit" "$cpp"
   then