From 62ff8daa7871b852dfe54433117fc90c51b11645 Mon Sep 17 00:00:00 2001 From: FancyKillerPanda Date: Thu, 24 Feb 2022 12:18:40 +1100 Subject: [PATCH] Changed //+ignore to //+build ignore. --- core/compress/gzip/example.odin | 2 +- core/compress/zlib/example.odin | 2 +- core/image/png/example.odin | 2 +- core/intrinsics/intrinsics.odin | 2 +- core/math/big/internal.odin | 2 -- core/math/big/tune.odin | 2 +- tests/core/math/big/test.odin | 2 +- 7 files changed, 6 insertions(+), 8 deletions(-) diff --git a/core/compress/gzip/example.odin b/core/compress/gzip/example.odin index 0e2c2b9f6..4ad0b1d7e 100644 --- a/core/compress/gzip/example.odin +++ b/core/compress/gzip/example.odin @@ -1,4 +1,4 @@ -//+ignore +//+build ignore package gzip /* diff --git a/core/compress/zlib/example.odin b/core/compress/zlib/example.odin index ab7fb4cd8..19017b279 100644 --- a/core/compress/zlib/example.odin +++ b/core/compress/zlib/example.odin @@ -1,4 +1,4 @@ -//+ignore +//+build ignore package zlib /* diff --git a/core/image/png/example.odin b/core/image/png/example.odin index 17436c260..8a55cbbea 100644 --- a/core/image/png/example.odin +++ b/core/image/png/example.odin @@ -8,7 +8,7 @@ An example of how to use `load`. */ -//+ignore +//+build ignore package png import "core:image" diff --git a/core/intrinsics/intrinsics.odin b/core/intrinsics/intrinsics.odin index 803b04d17..3f7d72a97 100644 --- a/core/intrinsics/intrinsics.odin +++ b/core/intrinsics/intrinsics.odin @@ -1,5 +1,5 @@ // This is purely for documentation -//+ignore +//+build ignore package intrinsics // Package-Related diff --git a/core/math/big/internal.odin b/core/math/big/internal.odin index dbcd16509..13aa96bef 100644 --- a/core/math/big/internal.odin +++ b/core/math/big/internal.odin @@ -25,8 +25,6 @@ TODO: Handle +/- Infinity and NaN. */ - -//+ignore package math_big import "core:mem" diff --git a/core/math/big/tune.odin b/core/math/big/tune.odin index 78a20c12b..ec1ef9a5b 100644 --- a/core/math/big/tune.odin +++ b/core/math/big/tune.odin @@ -7,7 +7,7 @@ The code started out as an idiomatic source port of libTomMath, which is in the public domain, with thanks. */ -//+ignore +//+build ignore package math_big import "core:time" diff --git a/tests/core/math/big/test.odin b/tests/core/math/big/test.odin index 81f1956dc..8deefb002 100644 --- a/tests/core/math/big/test.odin +++ b/tests/core/math/big/test.odin @@ -1,4 +1,4 @@ -//+ignore +//+build ignore /* Copyright 2021 Jeroen van Rijn . Made available under Odin's BSD-3 license.