From f6664a76992d7336b8134674aedbf79b81048e40 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Sat, 14 Oct 2023 20:10:38 -0700 Subject: [PATCH] [bazel] sort fixed_queue rule --- BUILD.bazel | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index 5af2d3c1..2c5538eb 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -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 = [ @@ -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"],