Skip to content

Commit

Permalink
MINOR: [C++] Fix unity build error (#14083)
Browse files Browse the repository at this point in the history
```
/arrow/cpp/src/arrow/compute/exec/bloom_filter.h:252:25: error: type attributes ignored after type is already defined [-Werror=attributes]
  252 | enum class ARROW_EXPORT BloomFilterBuildStrategy {
      |                         ^~~~~~~~~~~~~~~~~~~~~~~~
```

Authored-by: David Li <[email protected]>
Signed-off-by: David Li <[email protected]>
  • Loading branch information
lidavidm authored Sep 10, 2022
1 parent f184255 commit 8a9037d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/compute/exec/bloom_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class ARROW_EXPORT BlockedBloomFilter {
// b) It is preferred for small and medium size Bloom filters, because it skips extra
// synchronization related steps from parallel variant (partitioning and taking locks).
//
enum class ARROW_EXPORT BloomFilterBuildStrategy {
enum class BloomFilterBuildStrategy {
SINGLE_THREADED = 0,
PARALLEL = 1,
};
Expand Down

0 comments on commit 8a9037d

Please sign in to comment.