浏览代码

[doc] disable failing doc gen for haxe.atomic.AtomicInt for now

See https://github.com/HaxeFoundation/haxe/issues/10947
k 2 年之前
父节点
当前提交
9ea808467e

+ 1 - 0
std/cpp/_std/haxe/atomic/AtomicInt.hx

@@ -3,6 +3,7 @@ package haxe.atomic;
 #if cppia
 extern
 #end
+@:noDoc
 abstract AtomicInt(cpp.Pointer<Int>) {
 	public #if !(scriptable || cppia) inline #end function new(value:Int) {
 		this = cpp.Pointer.ofArray([value]);

+ 1 - 0
std/cs/_std/haxe/atomic/AtomicInt.hx

@@ -8,6 +8,7 @@ private class IntWrapper {
 	}
 }
 
+@:noDoc
 abstract AtomicInt(IntWrapper) to IntWrapper {
 	public inline function new(value:Int) {
 		this = new IntWrapper(value);

+ 1 - 0
std/haxe/atomic/AtomicInt.hx

@@ -8,6 +8,7 @@ package haxe.atomic;
 	Atomic integer.
 	(js) The Atomics and SharedArrayBuffer objects need to be available. Errors will be thrown if this is not the case.
 **/
+@:noDoc
 @:coreType
 abstract AtomicInt {
 	public function new(value:Int):Void;

+ 1 - 0
std/hl/_std/haxe/atomic/AtomicInt.hx

@@ -5,6 +5,7 @@ package haxe.atomic;
 #end
 import hl.Atomics;
 
+@:noDoc
 abstract AtomicInt(hl.NativeArray<Int>) {
 	public inline function new(value:Int):Void {
 		this = new hl.NativeArray(1);

+ 1 - 0
std/java/_std/haxe/atomic/AtomicInt.hx

@@ -2,6 +2,7 @@ package haxe.atomic;
 
 import java.util.concurrent.atomic.AtomicInteger;
 
+@:noDoc
 abstract AtomicInt(AtomicInteger) {
 	public inline function new(value:Int) {
 		this = new AtomicInteger(value);

+ 1 - 0
std/js/_std/haxe/atomic/AtomicInt.hx

@@ -2,6 +2,7 @@ package haxe.atomic;
 
 import js.lib.Atomics;
 
+@:noDoc
 abstract AtomicInt(js.lib.Int32Array) to js.lib.Int32Array {
 	public inline function new(value:Int) {
 		this = new js.lib.Int32Array(new js.lib.SharedArrayBuffer(js.lib.Int32Array.BYTES_PER_ELEMENT));