Skip to content

Commit

Permalink
[bazel] sort fixed_queue rule
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkaratarakis committed Nov 12, 2023
1 parent b8faa43 commit f6664a7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,19 @@ cc_library(
copts = ["-std=c++20"],
)

cc_library(
name = "fixed_queue",
hdrs = ["include/fixed_containers/fixed_queue.hpp"],
includes = ["include"],
deps = [
":fixed_deque",
":queue_adapter",
":sequence_container_checking",
":source_location",
],
copts = ["-std=c++20"],
)

cc_library(
name = "fixed_red_black_tree",
hdrs = [
Expand Down Expand Up @@ -250,19 +263,6 @@ cc_library(
copts = ["-std=c++20"],
)

cc_library(
name = "fixed_queue",
hdrs = ["include/fixed_containers/fixed_queue.hpp"],
includes = ["include"],
deps = [
":fixed_deque",
":queue_adapter",
":sequence_container_checking",
":source_location",
],
copts = ["-std=c++20"],
)

cc_library(
name = "fixed_string",
hdrs = ["include/fixed_containers/fixed_string.hpp"],
Expand Down

0 comments on commit f6664a7

Please sign in to comment.