浏览代码

Mark ConstCharStart.toString as extern too

Hugh 10 年之前
父节点
当前提交
3937ecbfa7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/cpp/ConstCharStar.hx

+ 1 - 1
std/cpp/ConstCharStar.hx

@@ -7,7 +7,7 @@ abstract ConstCharStar( RawConstPointer<Char> ) to(RawConstPointer<Char>)
    @:from
    static public inline function fromString(s:String) return new ConstCharStar(s);
 
-   @:to
+   @:to @:extern
    public inline function toString():String return new String(untyped this);
 
     @:to @:extern