diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
commit | 128875b501bc2989617ae553317b80faa556d752 (patch) | |
tree | 9b32d12123801179ebe900980556486ad4803482 /third_party/bazel/rules_haskell/examples/vector/include | |
parent | a20daf87265a62b494d67f86d4a5199f14394973 (diff) |
chore: Remove remaining Bazel-related files r/31
Diffstat (limited to 'third_party/bazel/rules_haskell/examples/vector/include')
-rw-r--r-- | third_party/bazel/rules_haskell/examples/vector/include/vector.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/third_party/bazel/rules_haskell/examples/vector/include/vector.h b/third_party/bazel/rules_haskell/examples/vector/include/vector.h deleted file mode 100644 index 1568bb290633..000000000000 --- a/third_party/bazel/rules_haskell/examples/vector/include/vector.h +++ /dev/null @@ -1,20 +0,0 @@ -#define PHASE_FUSED [1] -#define PHASE_INNER [0] - -#define INLINE_FUSED INLINE PHASE_FUSED -#define INLINE_INNER INLINE PHASE_INNER - -#ifndef NOT_VECTOR_MODULE -import qualified Data.Vector.Internal.Check as Ck -#endif - -#define ERROR (Ck.error __FILE__ __LINE__) -#define INTERNAL_ERROR (Ck.internalError __FILE__ __LINE__) - -#define CHECK(f) (Ck.f __FILE__ __LINE__) -#define BOUNDS_CHECK(f) (CHECK(f) Ck.Bounds) -#define UNSAFE_CHECK(f) (CHECK(f) Ck.Unsafe) -#define INTERNAL_CHECK(f) (CHECK(f) Ck.Internal) - -#define PHASE_STREAM Please use "PHASE_FUSED" instead -#define INLINE_STREAM Please use "INLINE_FUSED" instead |