Browse Source

[cpp] Fix AtomicInt

k 2 years ago
parent
commit
0d611414fb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/cpp/_std/haxe/atomic/AtomicInt.hx

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

@@ -1,9 +1,9 @@
 package haxe.atomic;
 
+@:noDoc
 #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]);